diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-08-24 17:13:55 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-08-24 17:13:55 +0200 |
commit | ff3950866c0f756a5b6f379b9f95f01fff4a9ec7 (patch) | |
tree | 1171b1c1ecd9cffc5022d34d8d411846b98adf09 /pgsql/native/driver.cxx | |
parent | 1fca8273447e0048941bbfe8ca23466f103c42f3 (diff) |
Make tests use unique table prefixes
Diffstat (limited to 'pgsql/native/driver.cxx')
-rw-r--r-- | pgsql/native/driver.cxx | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/pgsql/native/driver.cxx b/pgsql/native/driver.cxx index 30e707c..7fc63f6 100644 --- a/pgsql/native/driver.cxx +++ b/pgsql/native/driver.cxx @@ -29,8 +29,8 @@ 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)"); + db->execute ("DROP TABLE IF EXISTS pgsql_native_test"); + db->execute ("CREATE TABLE pgsql_native_test (n INT PRIMARY KEY)"); t.commit (); } @@ -40,8 +40,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 pgsql_native_test (n) VALUES (1)") == 1); + + assert ( + db->execute ("INSERT INTO pgsql_native_test (n) VALUES (2)") == 1); t.commit (); } @@ -51,8 +54,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 pgsql_native_test WHERE n < 3") == 2); + + assert ( + db->execute ("SELECT n FROM pgsql_native_test WHERE n > 3") == 0); t.commit (); } |