diff options
author | unknown <jmiller@mysql.com> | 2006-02-13 16:36:11 +0100 |
---|---|---|
committer | unknown <jmiller@mysql.com> | 2006-02-13 16:36:11 +0100 |
commit | 5e11016e878128a5ebd5b00a4ad08e95738e5a57 (patch) | |
tree | 6b9c81d6771cdd9c7b587c392a371c518157999f /mysql-test/extra/rpl_tests/rpl_auto_increment.test | |
parent | ed68cec78f5bc8b36e04d62a119fd1e406e757f0 (diff) | |
download | mariadb-git-5e11016e878128a5ebd5b00a4ad08e95738e5a57.tar.gz |
Updated test cases
mysql-test/include/not_ndb_default.inc:
New include file to skip certain tests with default engine = ndb
mysql-test/t/rpl_optimize.test:
Updated to skip test when NDB is default engine
mysql-test/extra/rpl_tests/rpl_auto_increment.test:
Updated to skip test when NDB is default engine
BitKeeper/deleted/.del-rpl_ndb_auto_inc-master.opt~e38255d94debc2c8:
Delete: mysql-test/t/rpl_ndb_auto_inc-master.opt
mysql-test/t/rpl_ndb_auto_inc.test:
updated to use with ndb
mysql-test/r/rpl_ndb_auto_inc.result:
New results
mysql-test/t/disabled.def:
Updated to remove rpl_ndb_auto_inc.test
mysql-test/extra/rpl_tests/rpl_row_blob.test:
updated to remove check table, not needed and not supported by ndb engine
mysql-test/t/rpl_ndb_blob2.test:
new ndb wrapper
mysql-test/r/rpl_ndb_blob2.result:
new results
Diffstat (limited to 'mysql-test/extra/rpl_tests/rpl_auto_increment.test')
-rw-r--r-- | mysql-test/extra/rpl_tests/rpl_auto_increment.test | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/extra/rpl_tests/rpl_auto_increment.test b/mysql-test/extra/rpl_tests/rpl_auto_increment.test index e7ea85f9f71..42f8fcfc5fb 100644 --- a/mysql-test/extra/rpl_tests/rpl_auto_increment.test +++ b/mysql-test/extra/rpl_tests/rpl_auto_increment.test @@ -1,6 +1,15 @@ # # Test of auto_increment with offset # +##################################### +# By: JBM +# Date: 2006-02-10 +# Change: NDB does not support auto inc +# in this usage. Currently there is no +# plan to implment. Skipping test when +# NDB is default engine. +##################################### +-- source include/not_ndb_default.inc -- source include/master-slave.inc eval create table t1 (a int not null auto_increment,b int, primary key (a)) engine=$engine_type2 auto_increment=3; |