@@ -292,14 +292,14 @@ public function testShowCreateTable1() {
292
292
293
293
public function testShowCreateTableWithEmptyDatetimeDefault () {
294
294
$ this ->assertQuery (
295
- " CREATE TABLE _tmp_table (
295
+ ' CREATE TABLE _tmp_table (
296
296
ID BIGINT PRIMARY KEY AUTO_INCREMENT,
297
297
timestamp1 datetime NOT NULL,
298
298
timestamp2 date NOT NULL,
299
299
timestamp3 time NOT NULL,
300
300
timestamp4 timestamp NOT NULL,
301
301
timestamp5 year NOT NULL
302
- ); "
302
+ ); '
303
303
);
304
304
305
305
$ this ->assertQuery (
@@ -308,15 +308,15 @@ public function testShowCreateTableWithEmptyDatetimeDefault() {
308
308
$ results = $ this ->engine ->get_query_results ();
309
309
310
310
$ this ->assertEquals (
311
- " CREATE TABLE `_tmp_table` (
311
+ ' CREATE TABLE `_tmp_table` (
312
312
`ID` bigint AUTO_INCREMENT,
313
313
`timestamp1` datetime NOT NULL,
314
314
`timestamp2` date NOT NULL,
315
315
`timestamp3` time NOT NULL,
316
316
`timestamp4` timestamp NOT NULL,
317
317
`timestamp5` year NOT NULL,
318
318
PRIMARY KEY (`ID`)
319
- ); " ,
319
+ ); ' ,
320
320
$ results [0 ]->{'Create Table ' }
321
321
);
322
322
}
0 commit comments