source include/have_log_bin.inc; let $MYSQLD_DATADIR= `select @@datadir`; # Create some data USE test; CREATE TABLE t1 (id INT PRIMARY KEY, f2 TEXT); INSERT INTO t1 VALUES (1, REPEAT("1234567890", 1024)); # Check to see if the @@log_bin_index file exists let $INDEX=`select @@log_bin_index`; --echo # log_bin_index variable value is $INDEX # This will fail --file_exists $INDEX # Test cleanup DROP TABLE t1; --echo End of tests