mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-12-27 15:05:28 +03:00
use make_keywords for place search terms also
Ensures that place indeed uses the same search names as other names.
This commit is contained in:
parent
02f6afa51b
commit
fa3e48c59f
@ -513,10 +513,9 @@ class _TokenInfo:
|
||||
"""
|
||||
def _get_place(name):
|
||||
with conn.cursor() as cur:
|
||||
cur.execute("""SELECT (addr_ids_from_name(%s)
|
||||
|| getorcreate_name_id(make_standard_name(%s), ''))::text,
|
||||
cur.execute("""SELECT make_keywords(hstore('name' , %s))::text,
|
||||
word_ids_from_name(%s)::text""",
|
||||
(name, name, name))
|
||||
(name, name))
|
||||
return cur.fetchone()
|
||||
|
||||
self.data['place_search'], self.data['place_match'] = \
|
||||
|
Loading…
Reference in New Issue
Block a user