]> git.openstreetmap.org Git - nominatim.git/commitdiff
streamline get_name_by_language()
authorSarah Hoffmann <lonvia@denofr.de>
Thu, 24 Sep 2015 21:52:03 +0000 (23:52 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Thu, 24 Sep 2015 21:52:03 +0000 (23:52 +0200)
patch by mdeweerd

sql/functions.sql

index 3c8f16e0831a5696d7974f48889183bc79b9fc10..bd64697ad0801d53d26a641e72ef4040e4f84ac5 100644 (file)
@@ -2118,28 +2118,27 @@ BEGIN
 END; 
 $$ LANGUAGE plpgsql;
 
+
 CREATE OR REPLACE FUNCTION get_name_by_language(name hstore, languagepref TEXT[]) RETURNS TEXT
   AS $$
 DECLARE
-  search TEXT[];
-  found BOOLEAN;
+  result TEXT;
 BEGIN
-
   IF name is null THEN
     RETURN null;
   END IF;
 
-  search := languagepref;
-
-  FOR j IN 1..array_upper(search, 1) LOOP
-    IF name ? search[j] AND trim(name->search[j]) != '' THEN
-      return trim(name->search[j]);
+  FOR j IN 1..array_upper(languagepref,1) LOOP
+    IF name ? languagepref[j] THEN
+      result := trim(name->languagepref[j]);
+      IF result != '' THEN
+        return result;
+      END IF;
     END IF;
   END LOOP;
 
   -- anything will do as a fallback - just take the first name type thing there is
-  search := avals(name);
-  RETURN search[1];
+  RETURN trim((avals(name))[1]);
 END;
 $$
 LANGUAGE plpgsql IMMUTABLE;