mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
9a84980668
Added --skip-test-db option to mysql_install_db. If specified, no test database created and relevant grants issued. Removed --skip-auth-anonymous-user option of mysql_install_db. Now it is covered by --skip-test-db. Dropped some Debian patches that did the same. Removed unused make_win_bin_dist.1, make_win_bin_dist and mysql_install_db.pl.in.
11 lines
335 B
Text
11 lines
335 B
Text
SHOW VARIABLES LIKE 'innodb_flush_method';
|
|
Variable_name Value
|
|
innodb_flush_method O_DIRECT
|
|
CREATE TABLE t1 (x INT) ENGINE=INNODB, DATA DIRECTORY='MYSQL_TMP_DIR';
|
|
# Contents of tmp/test directory containing .ibd file
|
|
t1.ibd
|
|
# Contents of the 'test' database directory containing .isl and .frm files
|
|
db.opt
|
|
t1.frm
|
|
t1.isl
|
|
DROP TABLE t1;
|