mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 11:01:52 +01:00
a4789f52d8
- Test with LOCK TABLES - Test mysqldump - Don't update rows for sequence tables if values doesn't change. This is needed as InnoDB gives an error for updates where values doesn't change.
15 lines
393 B
Text
15 lines
393 B
Text
#
|
|
# Testing mysqldump of sequences
|
|
#
|
|
|
|
# Embedded server doesn't support external clients
|
|
--source include/not_embedded.inc
|
|
--source include/have_aria.inc
|
|
--source include/have_innodb.inc
|
|
|
|
CREATE SEQUENCE a1 engine=aria;
|
|
CREATE TABLE t1(a INT, KEY (a)) KEY_BLOCK_SIZE=1024;
|
|
insert into t1 values (1),(2);
|
|
CREATE SEQUENCE x1 engine=innodb;
|
|
--exec $MYSQL_DUMP --compact test
|
|
DROP TABLE a1,t1,x1;
|