Commit 984cf841 authored by Claude Paroz's avatar Claude Paroz
Browse files

[1.5.x] 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 5fa5621f. Thanks Michael Manfre for spotting
the issue.
Backport of 0cdfa76e from master.
parent d6bad2e9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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');