mariadb/mysql-test/r/binlog_row_drop_tmp_tbl.result

21 lines
716 B
Text
Raw Normal View History

drop database if exists `drop-temp+table-test`;
reset master;
create database `drop-temp+table-test`;
use `drop-temp+table-test`;
2005-02-05 19:49:02 +01:00
create temporary table shortn1 (a int);
create temporary table `table:name` (a int);
2005-02-05 19:49:02 +01:00
create temporary table shortn2 (a int);
select get_lock("a",10);
get_lock("a",10)
1
select get_lock("a",10);
get_lock("a",10)
1
show binlog events;
Log_name Pos Event_type Server_id End_log_pos Info
2005-02-05 19:49:02 +01:00
master-bin.000001 # Format_desc 1 # Server ver: VERSION, Binlog ver: 4
2006-03-10 17:31:07 +01:00
master-bin.000001 # Table_map 1 # table_id: # (mysql.proc)
master-bin.000001 # Write_rows 1 # table_id: # flags: STMT_END_F
2005-02-05 19:49:02 +01:00
master-bin.000001 # Query 1 # create database `drop-temp+table-test`
drop database `drop-temp+table-test`;