diff options
author | Alexander Barkov <bar@mariadb.org> | 2014-12-10 08:13:08 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2014-12-10 08:13:08 +0400 |
commit | dd270e43bf84e7dbf2a9ee7c6c3a6de372128e83 (patch) | |
tree | ca8985f1c09a483871af76066068269c55c23647 /mysql-test/r/create_drop_binlog.result | |
parent | c6d3f8058db30a6621e36b05564a1b2ae68bec7f (diff) | |
download | mariadb-git-dd270e43bf84e7dbf2a9ee7c6c3a6de372128e83.tar.gz |
MDEV-7280 DATABASE: CREATE OR REPLACE
Diffstat (limited to 'mysql-test/r/create_drop_binlog.result')
-rw-r--r-- | mysql-test/r/create_drop_binlog.result | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/mysql-test/r/create_drop_binlog.result b/mysql-test/r/create_drop_binlog.result new file mode 100644 index 00000000000..54dbfd5c75a --- /dev/null +++ b/mysql-test/r/create_drop_binlog.result @@ -0,0 +1,29 @@ +CREATE OR REPLACE DATABASE d1; +CREATE OR REPLACE DATABASE d1; +DROP DATABASE d1; +CREATE DATABASE IF NOT EXISTS d1; +CREATE DATABASE IF NOT EXISTS d1; +Warnings: +Note 1007 Can't create database 'd1'; database exists +DROP DATABASE IF EXISTS d1; +DROP DATABASE IF EXISTS d1; +Warnings: +Note 1008 Can't drop database 'd1'; database doesn't exist +"Runnig SHOW BINLOG EVENTS" +Log_name Pos Event_type Server_id End_log_pos Info +# # Gtid 1 # GTID #-#-# +# # Query 1 # CREATE OR REPLACE DATABASE d1 +# # Gtid 1 # GTID #-#-# +# # Query 1 # CREATE OR REPLACE DATABASE d1 +# # Gtid 1 # GTID #-#-# +# # Query 1 # DROP DATABASE d1 +# # Gtid 1 # GTID #-#-# +# # Query 1 # CREATE DATABASE IF NOT EXISTS d1 +# # Gtid 1 # GTID #-#-# +# # Query 1 # CREATE DATABASE IF NOT EXISTS d1 +# # Gtid 1 # GTID #-#-# +# # Query 1 # DROP DATABASE IF EXISTS d1 +# # Gtid 1 # GTID #-#-# +# # Query 1 # DROP DATABASE IF EXISTS d1 +RESET MASTER; +USE test; |