mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
15 lines
422 B
Text
15 lines
422 B
Text
|
--source include/windows.inc
|
||
|
--source include/not_embedded.inc
|
||
|
|
||
|
--echo # Test mysqldump specific features (pipe connection, with parallel)
|
||
|
CREATE TABLE t1 (i INT);
|
||
|
INSERT INTO t1 VALUES(1);
|
||
|
|
||
|
--exec $MYSQL_DUMP --host=. --tab=$MYSQLTEST_VARDIR/tmp/ test --parallel=2
|
||
|
DROP TABLE t1;
|
||
|
--exec $MYSQL test < $MYSQLTEST_VARDIR/tmp/t1.sql
|
||
|
--exec $MYSQL_IMPORT test $MYSQLTEST_VARDIR/tmp/t1.txt
|
||
|
SELECT * FROM t1;
|
||
|
DROP TABLE t1;
|
||
|
|