2012-07-21 20:24:29 +08:00
|
|
|
-- a comment
|
|
|
|
INSERT INTO initial_sql_regress_simple (name) VALUES ('John'); -- another comment
|
|
|
|
INSERT INTO initial_sql_regress_simple (name) VALUES ('-- Comment Man');
|
2006-06-20 15:12:45 +08:00
|
|
|
INSERT INTO initial_sql_regress_simple (name) VALUES ('Paul');
|
2012-12-11 00:43:07 +08:00
|
|
|
INSERT INTO
|
|
|
|
initial_sql_regress_simple (name) VALUES ('Ringo');
|
2006-06-20 15:12:45 +08:00
|
|
|
INSERT INTO initial_sql_regress_simple (name) VALUES ('George');
|
2006-06-20 16:00:44 +08:00
|
|
|
INSERT INTO initial_sql_regress_simple (name) VALUES ('Miles O''Brien');
|
2006-06-20 22:11:59 +08:00
|
|
|
INSERT INTO initial_sql_regress_simple (name) VALUES ('Semicolon;Man');
|
2013-03-27 06:18:03 +08:00
|
|
|
INSERT INTO initial_sql_regress_simple (name) VALUES ('"100%" of % are not placeholders');
|
2012-07-21 21:38:24 +08:00
|
|
|
INSERT INTO initial_sql_regress_simple (name) VALUES ('This line has a Windows line ending');
|
2006-06-20 15:12:45 +08:00
|
|
|
|