diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-09-21 08:39:30 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-09-21 08:39:30 +0200 |
commit | 0da4038d5047d83f3dbc86a06740d83b4fbf2ae5 (patch) | |
tree | 62e75dee376c190465c76be26ba331835d893629 /common | |
parent | 6c12bdfccb4f8323599c13d3e585e33b4720cda5 (diff) |
Add prefix to table name
Diffstat (limited to 'common')
-rw-r--r-- | common/erase-query/driver.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/erase-query/driver.cxx b/common/erase-query/driver.cxx index 5085207..baa66f4 100644 --- a/common/erase-query/driver.cxx +++ b/common/erase-query/driver.cxx @@ -162,7 +162,8 @@ main (int argc, char* argv[]) #ifndef DATABASE_MYSQL { transaction t (db->begin ()); - assert (db->execute ("SELECT * FROM object_v WHERE object_id = 1") == 0); + assert (db->execute ("SELECT * FROM common_erase_query_object_v " + "WHERE object_id = 1") == 0); t.commit (); } #endif |