]> git.openstreetmap.org Git - nominatim.git/commitdiff
remove special search for Tiger postcodes
authorSarah Hoffmann <lonvia@denofr.de>
Mon, 16 Apr 2018 18:25:19 +0000 (20:25 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Mon, 16 Apr 2018 18:25:19 +0000 (20:25 +0200)
Postcodes should no longer appear in the address search terms.

sql/functions.sql

index b39d59b70fc295fe8e672b766ac367b47c715998..91230b2dd6d0b2afec209379811300d44a983205 100644 (file)
@@ -1806,22 +1806,6 @@ RAISE WARNING 'Address found % -> %', addr_item.key, addr_item.value;
   END IF;
   nameaddress_vector := array_merge(nameaddress_vector, isin_tokens);
 
-  -- %NOTIGERDATA% IF 0 THEN
-  -- for the USA we have an additional address table.  Merge in zip codes from there too
-  IF NEW.rank_search = 26 AND NEW.country_code = 'us' THEN
-    FOR location IN SELECT distinct postcode from location_property_tiger where parent_place_id = NEW.place_id LOOP
-      address_street_word_id := get_name_id(make_standard_name(location.postcode));
-      nameaddress_vector := array_merge(nameaddress_vector, ARRAY[address_street_word_id]);
-      isin_tokens := isin_tokens || address_street_word_id;
-
-      -- also merge in the single word version
-      address_street_word_id := get_word_id(make_standard_name(location.postcode));
-      nameaddress_vector := array_merge(nameaddress_vector, ARRAY[address_street_word_id]);
-    END LOOP;
-  END IF;
-  --DEBUG: RAISE WARNING 'Tiger postcodes collected';
-  -- %NOTIGERDATA% END IF;
-
 -- RAISE WARNING 'ISIN: %', isin_tokens;
 
   -- Process area matches