aboutsummaryrefslogtreecommitdiff
path: root/mysql/native/driver.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-08-24 17:13:55 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-08-24 17:13:55 +0200
commitff3950866c0f756a5b6f379b9f95f01fff4a9ec7 (patch)
tree1171b1c1ecd9cffc5022d34d8d411846b98adf09 /mysql/native/driver.cxx
parent1fca8273447e0048941bbfe8ca23466f103c42f3 (diff)
Make tests use unique table prefixes
Diffstat (limited to 'mysql/native/driver.cxx')
-rw-r--r--mysql/native/driver.cxx20
1 files changed, 14 insertions, 6 deletions
diff --git a/mysql/native/driver.cxx b/mysql/native/driver.cxx
index 437a160..9472cf3 100644
--- a/mysql/native/driver.cxx
+++ b/mysql/native/driver.cxx
@@ -30,8 +30,10 @@ main (int argc, char* argv[])
{
transaction t (db->begin ());
- db->execute ("DROP TABLE IF EXISTS test");
- db->execute ("CREATE TABLE test (n INT PRIMARY KEY) ENGINE=InnoDB");
+ db->execute ("DROP TABLE IF EXISTS mysql_native_test");
+
+ db->execute ("CREATE TABLE mysql_native_test (n INT PRIMARY KEY) "
+ "ENGINE=InnoDB");
t.commit ();
}
@@ -41,8 +43,11 @@ main (int argc, char* argv[])
{
transaction t (db->begin ());
- assert (db->execute ("INSERT INTO test (n) VALUES (1)") == 1);
- assert (db->execute ("INSERT INTO test (n) VALUES (2)") == 1);
+ assert (
+ db->execute ("INSERT INTO mysql_native_test (n) VALUES (1)") == 1);
+
+ assert (
+ db->execute ("INSERT INTO mysql_native_test (n) VALUES (2)") == 1);
t.commit ();
}
@@ -52,8 +57,11 @@ main (int argc, char* argv[])
{
transaction t (db->begin ());
- assert (db->execute ("SELECT n FROM test WHERE n < 3") == 2);
- assert (db->execute ("SELECT n FROM test WHERE n > 3") == 0);
+ assert (
+ db->execute ("SELECT n FROM mysql_native_test WHERE n < 3") == 2);
+
+ assert (
+ db->execute ("SELECT n FROM mysql_native_test WHERE n > 3") == 0);
t.commit ();
}