diff options
author | Jochen Topf <jochen@topf.org> | 2011-12-11 15:56:27 +0100 |
---|---|---|
committer | Jochen Topf <jochen@topf.org> | 2011-12-11 15:56:27 +0100 |
commit | 359ea6d495a4439d8fd6fe5dd0ce0619a0a37445 (patch) | |
tree | df8a53d28c153243fe43658776ba9b7ebababd26 /sources/master | |
parent | e6b260b70547e535a8362f2044a935ff4f1b87ff (diff) | |
download | taginfo-359ea6d495a4439d8fd6fe5dd0ce0619a0a37445.tar taginfo-359ea6d495a4439d8fd6fe5dd0ce0619a0a37445.tar.gz |
Postprocessing for tag combination counting.
Diffstat (limited to 'sources/master')
-rw-r--r-- | sources/master/interesting_tags.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/master/interesting_tags.sql b/sources/master/interesting_tags.sql index c39c195..862a39f 100644 --- a/sources/master/interesting_tags.sql +++ b/sources/master/interesting_tags.sql @@ -27,7 +27,7 @@ INSERT INTO interesting_tags (key, value) UNION SELECT key, value FROM db.tags WHERE count_all > 10000; -DELETE FROM interesting_tags WHERE key IN ('created_by', 'ele', 'height', 'is_in', 'layer', 'maxspeed', 'name', 'ref', 'width') AND value IS NOT NULL; +DELETE FROM interesting_tags WHERE key IN ('created_by', 'ele', 'height', 'is_in', 'lanes', 'layer', 'maxspeed', 'name', 'ref', 'width') AND value IS NOT NULL; DELETE FROM interesting_tags WHERE value IS NOT NULL AND key LIKE '%:%'; DELETE FROM interesting_tags WHERE value IS NOT NULL AND key LIKE 'fresno_%'; |