forked from hans/Nominatim
avoid adding NULL tokens for frequent full names
This commit is contained in:
@@ -347,7 +347,7 @@ BEGIN
|
|||||||
|
|
||||||
w := getorcreate_word_id(s);
|
w := getorcreate_word_id(s);
|
||||||
|
|
||||||
IF NOT (ARRAY[w] <@ result) THEN
|
IF w IS NOT NULL AND NOT (ARRAY[w] <@ result) THEN
|
||||||
result := result || w;
|
result := result || w;
|
||||||
END IF;
|
END IF;
|
||||||
|
|
||||||
@@ -415,7 +415,7 @@ BEGIN
|
|||||||
|
|
||||||
w := getorcreate_word_id(s);
|
w := getorcreate_word_id(s);
|
||||||
|
|
||||||
IF NOT (ARRAY[w] <@ result) THEN
|
IF w IS NOT NULL AND NOT (ARRAY[w] <@ result) THEN
|
||||||
result := result || w;
|
result := result || w;
|
||||||
END IF;
|
END IF;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user