mirror of
https://github.com/django/django.git
synced 2025-03-03 05:24:24 +00:00
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.
This commit is contained in:
parent
be9f2919e0
commit
0cdfa76e68
@ -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');
|
||||
|
Loading…
x
Reference in New Issue
Block a user