summaryrefslogtreecommitdiff
path: root/tagstats
diff options
context:
space:
mode:
authorJochen Topf <jochen@topf.org>2013-01-19 12:32:51 +0100
committerJochen Topf <jochen@topf.org>2013-01-19 12:32:51 +0100
commitd5422cb98f377fe6388a718425822b0896c3cced (patch)
tree3dde8fcc6de4e2c4094b3d6ec449d83ac01223ab /tagstats
parent8c37c70d218e78468ab5111586e509ad0caa3dcc (diff)
downloadtaginfo-d5422cb98f377fe6388a718425822b0896c3cced.tar
taginfo-d5422cb98f377fe6388a718425822b0896c3cced.tar.gz
Rename (key|tag)pairs to (key|tag)_combinations
Diffstat (limited to 'tagstats')
-rw-r--r--tagstats/tagstats_handler.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tagstats/tagstats_handler.hpp b/tagstats/tagstats_handler.hpp
index 9566446..40ed03b 100644
--- a/tagstats/tagstats_handler.hpp
+++ b/tagstats/tagstats_handler.hpp
@@ -580,13 +580,13 @@ public:
"VALUES (?, ?, ?, ?, ?, ?);");
#ifdef TAGSTATS_COUNT_KEY_COMBINATIONS
- Sqlite::Statement statement_insert_into_key_combinations(m_database, "INSERT INTO keypairs (key1, key2, " \
+ Sqlite::Statement statement_insert_into_key_combinations(m_database, "INSERT INTO key_combinations (key1, key2, " \
"count_all, count_nodes, count_ways, count_relations) " \
"VALUES (?, ?, ?, ?, ?, ?);");
#endif // TAGSTATS_COUNT_KEY_COMBINATIONS
#ifdef TAGSTATS_COUNT_TAG_COMBINATIONS
- Sqlite::Statement statement_insert_into_tag_combinations(m_database, "INSERT INTO tagpairs (key1, value1, key2, value2, " \
+ Sqlite::Statement statement_insert_into_tag_combinations(m_database, "INSERT INTO tag_combinations (key1, value1, key2, value2, " \
"count_all, count_nodes, count_ways, count_relations) " \
"VALUES (?, ?, ?, ?, ?, ?, ?, ?);");
#endif // TAGSTATS_COUNT_TAG_COMBINATIONS