mirror of
https://github.com/MariaDB/server.git
synced 2025-09-02 09:41:40 +03:00

- Update mysql-test-run.pl to collect tests from several suites - Group test into suites - Add suite.opt file
18 lines
541 B
Plaintext
18 lines
541 B
Plaintext
drop database if exists `drop-temp+table-test`;
|
|
reset master;
|
|
create database `drop-temp+table-test`;
|
|
use `drop-temp+table-test`;
|
|
create temporary table shortn1 (a int);
|
|
create temporary table `table:name` (a int);
|
|
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 from <binlog_start>;
|
|
Log_name Pos Event_type Server_id End_log_pos Info
|
|
master-bin.000001 # Query # # create database `drop-temp+table-test`
|
|
drop database `drop-temp+table-test`;
|