mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
5a3bf84468
The test checked version_comment which is not helpful, and it would cause the mismatch on any build apart from default source builds. Fixed by removing the check
20 lines
962 B
Text
20 lines
962 B
Text
--source include/big_test.inc
|
|
--source include/have_xtradb.inc
|
|
|
|
drop table if exists t1;
|
|
#
|
|
# test for bug LP#875797 "Using 'innodb_sys_indexes' causes core dump"
|
|
#
|
|
--disable_result_log
|
|
SELECT COUNT(*) FROM `information_schema`.`INNODB_SYS_INDEXES` ;
|
|
CREATE TABLE test.t1 ( `a` SERIAL NOT NULL , `b` VARCHAR( 255 ) NOT NULL , INDEX ( `b` ) ) ENGINE = InnoDB ;
|
|
SHOW TABLE STATUS FROM `information_schema` LIKE 'INNODB\_SYS\_INDEXES%' ;
|
|
drop table test.t1;
|
|
SHOW TABLE STATUS FROM `information_schema` LIKE 'INNODB\_SYS\_INDEXES%' ;
|
|
SELECT COUNT(*) FROM `information_schema`.`INNODB_SYS_INDEXES` ;
|
|
CREATE TABLE test.t1 ( `a` SERIAL NOT NULL , `b` VARCHAR( 255 ) NOT NULL , INDEX ( `b` ) ) ENGINE = InnoDB ;
|
|
SHOW TABLE STATUS FROM `information_schema` LIKE 'INNODB\_SYS\_INDEXES%' ;
|
|
SELECT COUNT(*) FROM `information_schema`.`INNODB_SYS_INDEXES` ;
|
|
drop table test.t1;
|
|
SHOW TABLE STATUS FROM `information_schema` LIKE 'INNODB\_SYS\_INDEXES%' ;
|
|
--enable_result_log
|