summaryrefslogtreecommitdiff
path: root/tests/regressiontests/initial_sql_regress
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2012-12-10 17:43:07 +0100
committerClaude Paroz <claude@2xlibre.net>2012-12-10 17:49:04 +0100
commit0cdfa76e68468ddf0a99198e1db07a703354b5af (patch)
treea2c1c553ea69aa26a6d4f1a276d56734797ce889 /tests/regressiontests/initial_sql_regress
parentbe9f2919e0e52faa7f7177c795d20646eff89874 (diff)
Amended an SQL test fixture to not include an id value
Some backends might need special handling for auto-increment values. This was introduced in 5fa5621f574. Thanks Michael Manfre for spotting the issue.
Diffstat (limited to 'tests/regressiontests/initial_sql_regress')
-rw-r--r--tests/regressiontests/initial_sql_regress/sql/simple.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/regressiontests/initial_sql_regress/sql/simple.sql b/tests/regressiontests/initial_sql_regress/sql/simple.sql
index abd9fee92b..d82f8381af 100644
--- a/tests/regressiontests/initial_sql_regress/sql/simple.sql
+++ b/tests/regressiontests/initial_sql_regress/sql/simple.sql
@@ -2,8 +2,8 @@
INSERT INTO initial_sql_regress_simple (name) VALUES ('John'); -- another comment
INSERT INTO initial_sql_regress_simple (name) VALUES ('-- Comment Man');
INSERT INTO initial_sql_regress_simple (name) VALUES ('Paul');
-INSERT INTO initial_sql_regress_simple
- VALUES (150, 'Ringo');
+INSERT INTO
+ initial_sql_regress_simple (name) VALUES ('Ringo');
INSERT INTO initial_sql_regress_simple (name) VALUES ('George');
INSERT INTO initial_sql_regress_simple (name) VALUES ('Miles O''Brien');
INSERT INTO initial_sql_regress_simple (name) VALUES ('Semicolon;Man');