mirror of
https://github.com/MariaDB/server.git
synced 2025-02-07 06:12:18 +01:00
21 lines
No EOL
594 B
Text
21 lines
No EOL
594 B
Text
--source include/not_embedded.inc
|
|
--source include/have_innodb.inc
|
|
--source include/have_symlink.inc
|
|
|
|
SHOW VARIABLES LIKE 'innodb_flush_method';
|
|
|
|
let MYSQLD_DATADIR=`SELECT @@datadir`;
|
|
|
|
--replace_result $MYSQL_TMP_DIR MYSQL_TMP_DIR
|
|
|
|
# Create a table with explicit data directory option.
|
|
EVAL CREATE TABLE t1 (x INT) ENGINE=INNODB, DATA DIRECTORY='$MYSQL_TMP_DIR';
|
|
|
|
--echo # Contents of tmp/test directory containing .ibd file
|
|
--list_files $MYSQL_TMP_DIR/test
|
|
|
|
--echo # Contents of the 'test' database directory containing .isl and .frm files
|
|
--list_files $MYSQLD_DATADIR/test
|
|
|
|
DROP TABLE t1;
|
|
|