This repository was archived by the owner on Jun 2, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-10
lines changed Expand file tree Collapse file tree 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 @@ -1531,6 +1531,7 @@ private function execute_select() {
1531
1531
ELSE type
1532
1532
END as TABLE_TYPE,
1533
1533
'InnoDB' as ENGINE,
1534
+ 10 as VERSION,
1534
1535
'Dynamic' as ROW_FORMAT,
1535
1536
0 as TABLE_ROWS,
1536
1537
0 as AVG_ROW_LENGTH,
@@ -1545,9 +1546,7 @@ private function execute_select() {
1545
1546
'utf8mb4_general_ci' as TABLE_COLLATION,
1546
1547
NULL as CHECKSUM,
1547
1548
'' as CREATE_OPTIONS,
1548
- '' as TABLE_COMMENT,
1549
- 10 as VERSION,
1550
- sql as CREATE_TABLE
1549
+ '' as TABLE_COMMENT
1551
1550
FROM sqlite_master
1552
1551
WHERE type IN ('table', 'view')) " ,
1553
1552
$ updated_query
You can’t perform that action at this time.
0 commit comments