diff options
Diffstat (limited to 'mysql-test/suite/binlog/r/binlog_bug36391.result')
-rw-r--r-- | mysql-test/suite/binlog/r/binlog_bug36391.result | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/suite/binlog/r/binlog_bug36391.result b/mysql-test/suite/binlog/r/binlog_bug36391.result new file mode 100644 index 00000000..551bfb99 --- /dev/null +++ b/mysql-test/suite/binlog/r/binlog_bug36391.result @@ -0,0 +1,10 @@ +CREATE TABLE t1(id INT); +SHOW TABLES; +Tables_in_test +t1 +FLUSH LOGS; +DROP TABLE t1; +SHOW TABLES; +Tables_in_test +t1 +DROP TABLE t1; |