From: Sarah Hoffmann Date: Mon, 16 Apr 2018 18:29:30 +0000 (+0200) Subject: remove debug code X-Git-Tag: v3.2.0~79^2~2 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/59288417f014b46b1dae53698f3be2a9ad084332?ds=inline remove debug code --- diff --git a/sql/functions.sql b/sql/functions.sql index d6e4acc6..16862acb 100644 --- a/sql/functions.sql +++ b/sql/functions.sql @@ -1774,7 +1774,6 @@ BEGIN FOR addr_item IN SELECT * FROM each(NEW.address) LOOP IF addr_item.key IN ('city', 'tiger:county', 'state', 'suburb', 'province', 'district', 'region', 'county', 'municipality', 'hamlet', 'village', 'subdistrict', 'town', 'neighbourhood', 'quarter', 'parish') THEN -RAISE WARNING 'Address found % -> %', addr_item.key, addr_item.value; address_street_word_id := get_name_id(make_standard_name(addr_item.value)); IF address_street_word_id IS NOT NULL AND NOT(ARRAY[address_street_word_id] <@ isin_tokens) THEN isin_tokens := isin_tokens || address_street_word_id;