summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/t/innodb-analyze.test
Commit message (Collapse)AuthorAgeFilesLines
* MDEV-19551 Remove alias innodb_stats_sample_pagesMarko Mäkelä2019-05-231-18/+14
| | | | | | The parameter innodb_stats_sample_pages became an alias for innodb_stats_transient_sample_pages and was deprecated in MariaDB Server 10.0. Let us finally remove that alias.
* allow suite.pm to skip combinations that originate from test/include files.Sergei Golubchik2012-02-071-0/+1
| | | | | | | storage/innobase/handler/handler0alter.cc: for NEWDATE key_type says unsigned, thus col->prtype says unsigned, but field->flags says signed. Use the same flag for value retrieval that was used for value storage.
* lots of post-merge changesSergei Golubchik2011-04-251-2/+0
|
* Updates for test cases from innodb-zip-ss6129.Sergey Vojtovich2009-11-051-2/+2
|
* InnoDB plugin is built-in: remove test code which depended on the plugin ↵Guilhem Bichot2009-08-051-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | property mysql-test/lib/mtr_cases.pm: there is only one InnoDB in this tree, no need to run an InnoDB test twice mysql-test/suite/innodb/include/have_innodb_plugin.inc: plugin is now the builtin mysql-test/suite/innodb/t/innodb-analyze.test: plugin is now the builtin mysql-test/suite/innodb/t/innodb-timeout.test: plugin is now the builtin mysql-test/suite/innodb/t/innodb-use-sys-malloc.test: plugin is now the builtin mysql-test/suite/innodb/t/innodb-zip.test: plugin is now the builtin mysql-test/suite/innodb/t/innodb_bug36169.test: plugin is now the builtin mysql-test/suite/innodb/t/innodb_bug36172.test: plugin is now the builtin mysql-test/suite/innodb/t/innodb_file_format.test: plugin is now the builtin mysql-test/suite/innodb/t/innodb_information_schema.test: plugin is now the builtin storage/innodb_plugin/plug.in: build libinnobase.a, to have it built-in
* This patch implements testing InnoDB plugin milestone.Sergey Vojtovich2009-06-241-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mysql-test/lib/mtr_cases.pm: Expand test cases list with test cases to test InnoDB plugin. mysql-test/mysql-test-run.pl: Added "innodb" suite to default list of suites. mysql-test/suite/innodb/include/have_innodb_plugin.inc: This file determines if innodb plugin is available. mysql-test/suite/innodb/my.cnf: Removed temporary my.cnf, which was added for testing. Not needed anymore - options are substituted by mtr. mysql-test/suite/innodb/t/innodb-analyze.test: This test can only be run with InnoDB plugin. mysql-test/suite/innodb/t/innodb-timeout.test: This test can only be run with InnoDB plugin. mysql-test/suite/innodb/t/innodb-use-sys-malloc-master.opt: Use "loose" prefix with mysqld options. This makes this test skipped properly when no innodb is available. mysql-test/suite/innodb/t/innodb-use-sys-malloc.test: This test can only be run with InnoDB plugin. mysql-test/suite/innodb/t/innodb-zip.test: This test can only be run with InnoDB plugin. mysql-test/suite/innodb/t/innodb_bug36169.test: This test can only be run with InnoDB plugin. mysql-test/suite/innodb/t/innodb_bug36172.test: This test can only be run with InnoDB plugin. mysql-test/suite/innodb/t/innodb_information_schema.test: This test can only be run with InnoDB plugin.
* Make innodb test suite pass with INNODB_PLUGIN.Sergey Vojtovich2009-06-111-0/+2
| | | | | | | | | | | | | | | | | | | mysql-test/suite/innodb/my.cnf: Added temporary my.cnf for initial testing. mysql-test/suite/innodb/t/disabled.def: Disabled innodb-index test until we know how to fix it. An error message appears in the error log, which is likely needs to be suppressed. mysql-test/suite/innodb/t/innodb-analyze.test: Cleanup variables before returning. mysql-test/suite/innodb/t/innodb-index.test: Include file from proper location. mysql-test/suite/innodb/t/innodb-index_ucs2.test: Include file from proper location. mysql-test/suite/innodb/t/innodb_bug36169.test: Cleanup variables before returning. mysql-test/suite/innodb/t/innodb_bug36172.test: Cleanup variables before returning.
* Add innodb plugin tests to a new mysql test suite 'innodb'.Satya B2009-06-101-0/+63
Created a test suite 'innodb' under mysql-test/suite/innodb for the innodb plugin tests. test suite 'innodb' has tests only which are not under any other mysql-test suites. Total 14 testcases are added to the test suite. Note: the patches in storage/innodb_plugin/mysql-test/patches are not applied yet