Skip to content

Commit e34a91f

Browse files
committed
All the ER_ and HA_ERR_ error codes must match b/w mysql-5.1 and mysql-5.5 and mysql-trunk.
I have made the changes in mysql-trunk so that it matches with mysql-5.5. I also updated corresponding test cases.
1 parent 61ae599 commit e34a91f

37 files changed

+254
-245
lines changed

include/my_base.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -450,9 +450,9 @@ enum ha_base_keytype {
450450
#define HA_ERR_NOT_IN_LOCK_PARTITIONS 178
451451
#define HA_ERR_INDEX_COL_TOO_LONG 179 /* Index column length exceeds limit */
452452
#define HA_ERR_INDEX_CORRUPT 180 /* InnoDB index corrupted */
453-
#define HA_ERR_UNDO_REC_TOO_BIG 181 /* Undo log record too big */
454-
#define HA_FTS_INVALID_DOCID 182 /* Invalid InnoDB Doc ID */
455-
#define HA_ERR_TABLE_IN_FK_CHECK 183 /* Table being used in foreign key check */
453+
#define HA_ERR_TABLE_IN_FK_CHECK 181 /* Table being used in foreign key check */
454+
#define HA_ERR_UNDO_REC_TOO_BIG 182 /* Undo log record too big */
455+
#define HA_FTS_INVALID_DOCID 183 /* Invalid InnoDB Doc ID */
456456
#define HA_ERR_LAST 183 /* Copy of last error nr */
457457

458458
/* Number of different errors */

mysql-test/r/cast.result

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ DROP TABLE t1;
456456
# DOESN'T ADHERE TO MAX_ALLOWED_PACKET
457457
SET @@GLOBAL.max_allowed_packet=2048;
458458
Warnings:
459-
Warning 1731 The value of 'max_allowed_packet' should be no less than the value of 'net_buffer_length'
459+
Warning 1708 The value of 'max_allowed_packet' should be no less than the value of 'net_buffer_length'
460460
SELECT CONVERT('a', BINARY(2049));
461461
CONVERT('a', BINARY(2049))
462462
NULL

mysql-test/r/explain.result

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -390,8 +390,8 @@ EXPLAIN EXTENDED SELECT * FROM t1 WHERE url=1;
390390
id select_type table type possible_keys key key_len ref rows filtered Extra
391391
1 SIMPLE t1 index PRIMARY PRIMARY 1 NULL 5 100.00 Using where; Using index
392392
Warnings:
393-
Warning 1713 Cannot use ref access on index 'PRIMARY' due to type or collation conversion on field 'url'
394-
Warning 1713 Cannot use range access on index 'PRIMARY' due to type or collation conversion on field 'url'
393+
Warning 1737 Cannot use ref access on index 'PRIMARY' due to type or collation conversion on field 'url'
394+
Warning 1737 Cannot use range access on index 'PRIMARY' due to type or collation conversion on field 'url'
395395
Note 1003 /* select#1 */ select `test`.`t1`.`url` AS `url` from `test`.`t1` where (`test`.`t1`.`url` = 1)
396396

397397
# Test that index can't be used for lookup due to collation mismatch
@@ -402,8 +402,8 @@ EXPLAIN EXTENDED SELECT * FROM t1 WHERE url='1' collate latin1_german2_ci;
402402
id select_type table type possible_keys key key_len ref rows filtered Extra
403403
1 SIMPLE t1 index PRIMARY PRIMARY 1 NULL 5 100.00 Using where; Using index
404404
Warnings:
405-
Warning 1713 Cannot use ref access on index 'PRIMARY' due to type or collation conversion on field 'url'
406-
Warning 1713 Cannot use range access on index 'PRIMARY' due to type or collation conversion on field 'url'
405+
Warning 1737 Cannot use ref access on index 'PRIMARY' due to type or collation conversion on field 'url'
406+
Warning 1737 Cannot use range access on index 'PRIMARY' due to type or collation conversion on field 'url'
407407
Note 1003 /* select#1 */ select `test`.`t1`.`url` AS `url` from `test`.`t1` where (`test`.`t1`.`url` = <cache>(('1' collate latin1_german2_ci)))
408408

409409
# Normally, range access on primary key is done
@@ -423,7 +423,7 @@ EXPLAIN EXTENDED SELECT * FROM t1 WHERE url>3;
423423
id select_type table type possible_keys key key_len ref rows filtered Extra
424424
1 SIMPLE t1 index PRIMARY PRIMARY 1 NULL 5 100.00 Using where; Using index
425425
Warnings:
426-
Warning 1713 Cannot use range access on index 'PRIMARY' due to type or collation conversion on field 'url'
426+
Warning 1737 Cannot use range access on index 'PRIMARY' due to type or collation conversion on field 'url'
427427
Note 1003 /* select#1 */ select `test`.`t1`.`url` AS `url` from `test`.`t1` where (`test`.`t1`.`url` > 3)
428428

429429
# Test that range access on index can't be done due to collation mismatch
@@ -435,7 +435,7 @@ EXPLAIN EXTENDED SELECT * FROM t1 WHERE url>'3' collate latin1_german2_ci;
435435
id select_type table type possible_keys key key_len ref rows filtered Extra
436436
1 SIMPLE t1 index PRIMARY PRIMARY 1 NULL 5 100.00 Using where; Using index
437437
Warnings:
438-
Warning 1713 Cannot use range access on index 'PRIMARY' due to type or collation conversion on field 'url'
438+
Warning 1737 Cannot use range access on index 'PRIMARY' due to type or collation conversion on field 'url'
439439
Note 1003 /* select#1 */ select `test`.`t1`.`url` AS `url` from `test`.`t1` where (`test`.`t1`.`url` > <cache>(('3' collate latin1_german2_ci)))
440440

441441
DROP TABLE t1;

mysql-test/r/get_diagnostics.result

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -232,26 +232,26 @@ GET DIAGNOSTICS CONDITION "1" @var = CLASS_ORIGIN;
232232
SELECT COUNT(max_questions) INTO @var FROM mysql.user;
233233
GET DIAGNOSTICS CONDITION 9999 @var = CLASS_ORIGIN;
234234
Warnings:
235-
Error 1753 Invalid condition number
235+
Error 1758 Invalid condition number
236236
GET DIAGNOSTICS CONDITION NULL @var = CLASS_ORIGIN;
237237
Warnings:
238-
Error 1753 Invalid condition number
239-
Error 1753 Invalid condition number
238+
Error 1758 Invalid condition number
239+
Error 1758 Invalid condition number
240240
GET DIAGNOSTICS CONDITION a @var = CLASS_ORIGIN;
241241
Warnings:
242-
Error 1753 Invalid condition number
243-
Error 1753 Invalid condition number
242+
Error 1758 Invalid condition number
243+
Error 1758 Invalid condition number
244244
Error 1054 Unknown column 'a' in 'field list'
245245
SELECT COUNT(max_questions) INTO @var FROM mysql.user;
246246
SET @cond = 1;
247247
GET DIAGNOSTICS CONDITION @cond @var1 = CLASS_ORIGIN;
248248
Warnings:
249-
Error 1753 Invalid condition number
249+
Error 1758 Invalid condition number
250250
SET @cond = "invalid";
251251
GET DIAGNOSTICS CONDITION @cond @var1 = CLASS_ORIGIN;
252252
Warnings:
253-
Error 1753 Invalid condition number
254-
Error 1753 Invalid condition number
253+
Error 1758 Invalid condition number
254+
Error 1758 Invalid condition number
255255
SELECT COUNT(max_questions) INTO @var FROM mysql.user;
256256
CREATE PROCEDURE p1()
257257
BEGIN
@@ -301,11 +301,11 @@ Warning 1292 Truncated incorrect DECIMAL value: ''
301301
GET DIAGNOSTICS CONDITION 99999 @var = CLASS_ORIGIN;
302302
Warnings:
303303
Warning 1292 Truncated incorrect DECIMAL value: ''
304-
Error 1753 Invalid condition number
304+
Error 1758 Invalid condition number
305305
SHOW WARNINGS;
306306
Level Code Message
307307
Warning 1292 Truncated incorrect DECIMAL value: ''
308-
Error 1753 Invalid condition number
308+
Error 1758 Invalid condition number
309309

310310
# Statement information runtime
311311

@@ -488,14 +488,14 @@ CALL p1();
488488
CAST(-19999999999999999999 AS SIGNED) -9223372036854775808
489489
errno1 1292
490490
msg1 Truncated incorrect DECIMAL value: ''
491-
errno2 1753
491+
errno2 1758
492492
msg2 Invalid condition number
493493
Warnings:
494494
Level Warning
495495
Code 1292
496496
Message Truncated incorrect DECIMAL value: ''
497497
Level Error
498-
Code 1753
498+
Code 1758
499499
Message Invalid condition number
500500
DROP PROCEDURE p1;
501501

mysql-test/r/innodb_explain_non_select_all.result

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1311,8 +1311,8 @@ EXPLAIN EXTENDED DELETE FROM t1 WHERE i > 10 AND i <= 18 ORDER BY i LIMIT 5;
13111311
id select_type table type possible_keys key key_len ref rows filtered Extra
13121312
1 SIMPLE t1 ALL i NULL NULL NULL 26 100.00 Using where; Using filesort
13131313
Warnings:
1314-
Warning 1713 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1315-
Warning 1713 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1314+
Warning 1737 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1315+
Warning 1737 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
13161316
# Status of EXPLAIN EXTENDED query
13171317
Variable_name Value
13181318
FLUSH STATUS;
@@ -1321,10 +1321,10 @@ EXPLAIN EXTENDED SELECT * FROM t1 WHERE i > 10 AND i <= 18 ORDER BY i LIMIT 5;
13211321
id select_type table type possible_keys key key_len ref rows filtered Extra
13221322
1 SIMPLE t1 ALL i NULL NULL NULL 26 100.00 Using where; Using filesort
13231323
Warnings:
1324-
Warning 1713 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1325-
Warning 1713 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1326-
Warning 1713 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1327-
Warning 1713 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1324+
Warning 1737 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1325+
Warning 1737 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1326+
Warning 1737 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1327+
Warning 1737 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
13281328
Note 1003 /* select#1 */ select `test`.`t1`.`a` AS `a`,`test`.`t1`.`i` AS `i` from `test`.`t1` where ((`test`.`t1`.`i` > 10) and (`test`.`t1`.`i` <= 18)) order by `test`.`t1`.`i` limit 5
13291329
# Status of EXPLAIN EXTENDED "equivalent" SELECT query execution
13301330
Variable_name Value
@@ -1458,7 +1458,7 @@ EXPLAIN EXTENDED DELETE FROM t2 WHERE b = 10 ORDER BY a, c LIMIT 5;
14581458
id select_type table type possible_keys key key_len ref rows filtered Extra
14591459
1 SIMPLE t2 ALL a NULL NULL NULL 26 100.00 Using where; Using filesort
14601460
Warnings:
1461-
Warning 1713 Cannot use range access on index 'a' due to type or collation conversion on field 'b'
1461+
Warning 1737 Cannot use range access on index 'a' due to type or collation conversion on field 'b'
14621462
# Status of EXPLAIN EXTENDED query
14631463
Variable_name Value
14641464
FLUSH STATUS;
@@ -1509,7 +1509,7 @@ EXPLAIN EXTENDED DELETE FROM t2 WHERE b = 10 ORDER BY a, c LIMIT 5;
15091509
id select_type table type possible_keys key key_len ref rows filtered Extra
15101510
1 SIMPLE t2 ALL a NULL NULL NULL 26 100.00 Using where; Using filesort
15111511
Warnings:
1512-
Warning 1713 Cannot use range access on index 'a' due to type or collation conversion on field 'b'
1512+
Warning 1737 Cannot use range access on index 'a' due to type or collation conversion on field 'b'
15131513
# Status of EXPLAIN EXTENDED query
15141514
Variable_name Value
15151515
FLUSH STATUS;
@@ -1779,8 +1779,8 @@ EXPLAIN EXTENDED UPDATE t2 SET a = 10 WHERE i > 10 AND i <= 18 ORDER BY i LIMIT
17791779
id select_type table type possible_keys key key_len ref rows filtered Extra
17801780
1 SIMPLE t2 ALL i NULL NULL NULL 26 100.00 Using where; Using filesort
17811781
Warnings:
1782-
Warning 1713 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1783-
Warning 1713 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1782+
Warning 1737 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1783+
Warning 1737 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
17841784
# Status of EXPLAIN EXTENDED query
17851785
Variable_name Value
17861786
FLUSH STATUS;
@@ -1789,10 +1789,10 @@ EXPLAIN EXTENDED SELECT * FROM t2 WHERE i > 10 AND i <= 18 ORDER BY i LIMIT
17891789
id select_type table type possible_keys key key_len ref rows filtered Extra
17901790
1 SIMPLE t2 ALL i NULL NULL NULL 26 100.00 Using where; Using filesort
17911791
Warnings:
1792-
Warning 1713 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1793-
Warning 1713 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1794-
Warning 1713 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1795-
Warning 1713 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1792+
Warning 1737 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1793+
Warning 1737 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1794+
Warning 1737 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1795+
Warning 1737 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
17961796
Note 1003 /* select#1 */ select `test`.`t2`.`a` AS `a`,`test`.`t2`.`i` AS `i` from `test`.`t2` where ((`test`.`t2`.`i` > 10) and (`test`.`t2`.`i` <= 18)) order by `test`.`t2`.`i` limit 5
17971797
# Status of EXPLAIN EXTENDED "equivalent" SELECT query execution
17981798
Variable_name Value
@@ -1927,7 +1927,7 @@ EXPLAIN EXTENDED UPDATE t2 SET d = 10 WHERE b = 10 ORDER BY a, c LIMIT 5;
19271927
id select_type table type possible_keys key key_len ref rows filtered Extra
19281928
1 SIMPLE t2 ALL a NULL NULL NULL 26 100.00 Using where; Using filesort
19291929
Warnings:
1930-
Warning 1713 Cannot use range access on index 'a' due to type or collation conversion on field 'b'
1930+
Warning 1737 Cannot use range access on index 'a' due to type or collation conversion on field 'b'
19311931
# Status of EXPLAIN EXTENDED query
19321932
Variable_name Value
19331933
FLUSH STATUS;
@@ -1978,7 +1978,7 @@ EXPLAIN EXTENDED UPDATE t2 SET d = 10 WHERE b = 10 ORDER BY a, c LIMIT 5;
19781978
id select_type table type possible_keys key key_len ref rows filtered Extra
19791979
1 SIMPLE t2 ALL a NULL NULL NULL 26 100.00 Using where; Using filesort
19801980
Warnings:
1981-
Warning 1713 Cannot use range access on index 'a' due to type or collation conversion on field 'b'
1981+
Warning 1737 Cannot use range access on index 'a' due to type or collation conversion on field 'b'
19821982
# Status of EXPLAIN EXTENDED query
19831983
Variable_name Value
19841984
FLUSH STATUS;

mysql-test/r/innodb_explain_non_select_none.result

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1313,8 +1313,8 @@ EXPLAIN EXTENDED DELETE FROM t1 WHERE i > 10 AND i <= 18 ORDER BY i LIMIT 5;
13131313
id select_type table type possible_keys key key_len ref rows filtered Extra
13141314
1 SIMPLE t1 ALL i NULL NULL NULL 26 100.00 Using where; Using filesort
13151315
Warnings:
1316-
Warning 1713 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1317-
Warning 1713 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1316+
Warning 1737 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1317+
Warning 1737 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
13181318
# Status of EXPLAIN EXTENDED query
13191319
Variable_name Value
13201320
FLUSH STATUS;
@@ -1323,10 +1323,10 @@ EXPLAIN EXTENDED SELECT * FROM t1 WHERE i > 10 AND i <= 18 ORDER BY i LIMIT 5;
13231323
id select_type table type possible_keys key key_len ref rows filtered Extra
13241324
1 SIMPLE t1 ALL i NULL NULL NULL 26 100.00 Using where; Using filesort
13251325
Warnings:
1326-
Warning 1713 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1327-
Warning 1713 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1328-
Warning 1713 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1329-
Warning 1713 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1326+
Warning 1737 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1327+
Warning 1737 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1328+
Warning 1737 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1329+
Warning 1737 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
13301330
Note 1003 /* select#1 */ select `test`.`t1`.`a` AS `a`,`test`.`t1`.`i` AS `i` from `test`.`t1` where ((`test`.`t1`.`i` > 10) and (`test`.`t1`.`i` <= 18)) order by `test`.`t1`.`i` limit 5
13311331
# Status of EXPLAIN EXTENDED "equivalent" SELECT query execution
13321332
Variable_name Value
@@ -1460,7 +1460,7 @@ EXPLAIN EXTENDED DELETE FROM t2 WHERE b = 10 ORDER BY a, c LIMIT 5;
14601460
id select_type table type possible_keys key key_len ref rows filtered Extra
14611461
1 SIMPLE t2 ALL a NULL NULL NULL 26 100.00 Using where; Using filesort
14621462
Warnings:
1463-
Warning 1713 Cannot use range access on index 'a' due to type or collation conversion on field 'b'
1463+
Warning 1737 Cannot use range access on index 'a' due to type or collation conversion on field 'b'
14641464
# Status of EXPLAIN EXTENDED query
14651465
Variable_name Value
14661466
FLUSH STATUS;
@@ -1511,7 +1511,7 @@ EXPLAIN EXTENDED DELETE FROM t2 WHERE b = 10 ORDER BY a, c LIMIT 5;
15111511
id select_type table type possible_keys key key_len ref rows filtered Extra
15121512
1 SIMPLE t2 ALL a NULL NULL NULL 26 100.00 Using where; Using filesort
15131513
Warnings:
1514-
Warning 1713 Cannot use range access on index 'a' due to type or collation conversion on field 'b'
1514+
Warning 1737 Cannot use range access on index 'a' due to type or collation conversion on field 'b'
15151515
# Status of EXPLAIN EXTENDED query
15161516
Variable_name Value
15171517
FLUSH STATUS;
@@ -1781,8 +1781,8 @@ EXPLAIN EXTENDED UPDATE t2 SET a = 10 WHERE i > 10 AND i <= 18 ORDER BY i LIMIT
17811781
id select_type table type possible_keys key key_len ref rows filtered Extra
17821782
1 SIMPLE t2 ALL i NULL NULL NULL 26 100.00 Using where; Using filesort
17831783
Warnings:
1784-
Warning 1713 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1785-
Warning 1713 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1784+
Warning 1737 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1785+
Warning 1737 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
17861786
# Status of EXPLAIN EXTENDED query
17871787
Variable_name Value
17881788
FLUSH STATUS;
@@ -1791,10 +1791,10 @@ EXPLAIN EXTENDED SELECT * FROM t2 WHERE i > 10 AND i <= 18 ORDER BY i LIMIT
17911791
id select_type table type possible_keys key key_len ref rows filtered Extra
17921792
1 SIMPLE t2 ALL i NULL NULL NULL 26 100.00 Using where; Using filesort
17931793
Warnings:
1794-
Warning 1713 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1795-
Warning 1713 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1796-
Warning 1713 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1797-
Warning 1713 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1794+
Warning 1737 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1795+
Warning 1737 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1796+
Warning 1737 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
1797+
Warning 1737 Cannot use range access on index 'i' due to type or collation conversion on field 'i'
17981798
Note 1003 /* select#1 */ select `test`.`t2`.`a` AS `a`,`test`.`t2`.`i` AS `i` from `test`.`t2` where ((`test`.`t2`.`i` > 10) and (`test`.`t2`.`i` <= 18)) order by `test`.`t2`.`i` limit 5
17991799
# Status of EXPLAIN EXTENDED "equivalent" SELECT query execution
18001800
Variable_name Value
@@ -1929,7 +1929,7 @@ EXPLAIN EXTENDED UPDATE t2 SET d = 10 WHERE b = 10 ORDER BY a, c LIMIT 5;
19291929
id select_type table type possible_keys key key_len ref rows filtered Extra
19301930
1 SIMPLE t2 ALL a NULL NULL NULL 26 100.00 Using where; Using filesort
19311931
Warnings:
1932-
Warning 1713 Cannot use range access on index 'a' due to type or collation conversion on field 'b'
1932+
Warning 1737 Cannot use range access on index 'a' due to type or collation conversion on field 'b'
19331933
# Status of EXPLAIN EXTENDED query
19341934
Variable_name Value
19351935
FLUSH STATUS;
@@ -1980,7 +1980,7 @@ EXPLAIN EXTENDED UPDATE t2 SET d = 10 WHERE b = 10 ORDER BY a, c LIMIT 5;
19801980
id select_type table type possible_keys key key_len ref rows filtered Extra
19811981
1 SIMPLE t2 ALL a NULL NULL NULL 26 100.00 Using where; Using filesort
19821982
Warnings:
1983-
Warning 1713 Cannot use range access on index 'a' due to type or collation conversion on field 'b'
1983+
Warning 1737 Cannot use range access on index 'a' due to type or collation conversion on field 'b'
19841984
# Status of EXPLAIN EXTENDED query
19851985
Variable_name Value
19861986
FLUSH STATUS;

mysql-test/r/innodb_ignore_builtin.result

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ ignore_builtin_innodb ON
44
select PLUGIN_NAME from information_schema.plugins
55
where PLUGIN_NAME = "InnoDb";
66
PLUGIN_NAME
7+
InnoDB
78
select ENGINE from information_schema.engines
89
where ENGINE = "InnoDB";
910
ENGINE
11+
InnoDB

0 commit comments

Comments
 (0)