File tree 2 files changed +3
-10
lines changed
2 files changed +3
-10
lines changed Original file line number Diff line number Diff line change @@ -84,13 +84,6 @@ public function testInformationSchemaTables() {
84
84
'ENGINE ' => 'InnoDB ' ,
85
85
'ROW_FORMAT ' => 'Dynamic ' ,
86
86
'TABLE_COLLATION ' => 'utf8mb4_general_ci ' ,
87
- 'TABLE_COMMENT ' => '' ,
88
- 'CREATE_TABLE ' => 'CREATE TABLE "wp_options"(
89
- "option_id" integer PRIMARY KEY AUTOINCREMENT NOT NULL,
90
- "option_name" text NOT NULL DEFAULT \'\' COLLATE NOCASE,
91
- "option_value" text NOT NULL COLLATE NOCASE,
92
- "autoload" text NOT NULL DEFAULT \'yes \' COLLATE NOCASE
93
- ) ' ,
94
87
'AUTO_INCREMENT ' => null ,
95
88
'CREATE_TIME ' => null ,
96
89
'UPDATE_TIME ' => null ,
@@ -104,6 +97,7 @@ public function testInformationSchemaTables() {
104
97
'CHECKSUM ' => null ,
105
98
'CREATE_OPTIONS ' => '' ,
106
99
'VERSION ' => '10 ' ,
100
+ 'TABLE_COMMENT ' => '' ,
107
101
),
108
102
(array ) $ result [0 ]
109
103
);
Original file line number Diff line number Diff line change @@ -1521,6 +1521,7 @@ private function execute_select() {
1521
1521
ELSE type
1522
1522
END as TABLE_TYPE,
1523
1523
'InnoDB' as ENGINE,
1524
+ 10 as VERSION,
1524
1525
'Dynamic' as ROW_FORMAT,
1525
1526
0 as TABLE_ROWS,
1526
1527
0 as AVG_ROW_LENGTH,
@@ -1535,9 +1536,7 @@ private function execute_select() {
1535
1536
'utf8mb4_general_ci' as TABLE_COLLATION,
1536
1537
NULL as CHECKSUM,
1537
1538
'' as CREATE_OPTIONS,
1538
- '' as TABLE_COMMENT,
1539
- 10 as VERSION,
1540
- sql as CREATE_TABLE
1539
+ '' as TABLE_COMMENT
1541
1540
FROM sqlite_master
1542
1541
WHERE type IN ('table', 'view')) " ,
1543
1542
$ updated_query
You can’t perform that action at this time.
0 commit comments