]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib-sql/functions/address_lookup.sql
add postcodes patterns without optional spaces
[nominatim.git] / lib-sql / functions / address_lookup.sql
index f18970baec1f199589ee32695c26dcd4278ea4c3..0eada6987e7db285f9418642ccc5280bd649811a 100644 (file)
@@ -43,8 +43,8 @@ BEGIN
     END IF;
   END LOOP;
 
-  -- anything will do as a fallback - just take the first name type thing there is
-  RETURN trim((avals(name))[1]);
+  -- as a fallback - take the last element since it is the default name
+  RETURN trim((avals(name))[array_length(avals(name), 1)]);
 END;
 $$
 LANGUAGE plpgsql IMMUTABLE;