mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 22:12:30 +01:00
7b4bd6dfce
Added --strace support to mysql-test-run mysql-test/mysql-test-run.pl: Added support for --strace (usefull for example to check how much memory mysqld was using) mysql-test/suite/funcs_1/t/is_engines_innodb.test: Fixed test case to also work with xtradb mysql-test/suite/innodb_plugin/t/innodb.test: Don't run if we don't have the used character sets. mysql-test/suite/innodb_plugin/t/innodb_mysql.test: Don't run if we don't have the used character sets. sql/sql_show.cc: Extended comment to 160 characters to get full comment from xtradb storage/xtradb/handler/ha_innodb.cc: Fixed valgrind warning.
16 lines
479 B
Text
16 lines
479 B
Text
# suite/funcs_1/t/is_engines_innodb.test
|
|
#
|
|
# Check the content of information_schema.engines
|
|
# Variant for storage engine InnoDB
|
|
#
|
|
# Author:
|
|
# 2008-01-23 mleich WL#4203 Reorganize and fix the data dictionary tests of
|
|
# testsuite funcs_1
|
|
#
|
|
|
|
let $engine_type= InnoDB;
|
|
--source include/have_innodb.inc
|
|
--vertical_results
|
|
--replace_regex /XtraDB engine based on InnoDB plugin. //
|
|
eval SELECT * FROM information_schema.engines
|
|
WHERE ENGINE = '$engine_type';
|