]> err.no Git - mapper/commitdiff
Look in postal_code when searching with a string
authorKaj-Michael Lang <milang@tal.org>
Mon, 5 Nov 2007 09:36:30 +0000 (11:36 +0200)
committerKaj-Michael Lang <milang@tal.org>
Mon, 5 Nov 2007 09:36:30 +0000 (11:36 +0200)
src/poi.c

index d4fdef1d049cf619e561be472778e22911617f1b..8b1ce81927206608bb810dac82c200f32ad34dc5 100644 (file)
--- a/src/poi.c
+++ b/src/poi.c
@@ -251,7 +251,7 @@ poi_db_prepare(sqlite3 *db)
                        " from poi p, category c "
                        " where p.lat between ? and ? "
                        " and p.lon between ? and ? "
-                       " and c.enabled=1 and p.cat_id = c.cat_id and p.label like ? order by p.label, c.label",
+                       " and c.enabled=1 and p.cat_id = c.cat_id and (p.label like $NAME or p.postal_code like $NAME) order by p.label, c.label",
                        -1, &poisql.select_poi_search, NULL)!=SQLITE_OK)
        return FALSE;
 
@@ -262,7 +262,7 @@ poi_db_prepare(sqlite3 *db)
                        " from poi p, category c "
                        " where p.lat between ? and ? "
                        " and p.lon between ? and ? "
-                       " and c.enabled=1 and p.cat_id = c.cat_id and p.label like ? and c.cat_id = ? order by p.label",
+                       " and c.enabled=1 and p.cat_id = c.cat_id and (p.label like $NAME or p.postal_code like $NAME) and c.cat_id = ? order by p.label",
                        -1, &poisql.select_poi_search_cat, NULL)!=SQLITE_OK)
        return FALSE;