Removed folder-based versioning for extension files

This commit is contained in:
Juan Ignacio Sánchez Lara
2018-02-19 11:27:23 +01:00
parent a5c7f313ac
commit 4326ac3430
23 changed files with 1426 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
-- Cleaning function
CREATE OR REPLACE FUNCTION geocode_clean_name(name text) RETURNS text
LANGUAGE plpgsql
AS $$
BEGIN
RETURN regexp_replace(name, '[^a-zA-Z\u00C0-\u00ff]+', '', 'g');
END
$$;