~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

Viewing changes to mysql-test/suite/binlog/r/binlog_row_drop_tmp_tbl.result

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski
  • Date: 2010-03-17 14:56:02 UTC
  • Revision ID: james.westby@ubuntu.com-20100317145602-x7e30l1b2sb5s6w6
Tags: upstream-5.1.45
ImportĀ upstreamĀ versionĀ 5.1.45

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
DROP DATABASE IF EXISTS `drop-temp+table-test`;
 
2
RESET MASTER;
 
3
CREATE DATABASE `drop-temp+table-test`;
 
4
USE `drop-temp+table-test`;
 
5
CREATE TEMPORARY TABLE shortn1 (a INT);
 
6
CREATE TEMPORARY TABLE `table:name` (a INT);
 
7
CREATE TEMPORARY TABLE shortn2 (a INT);
 
8
CREATE TEMPORARY TABLE tmp(c1 int);
 
9
CREATE TEMPORARY TABLE tmp1(c1 int);
 
10
CREATE TEMPORARY TABLE tmp2(c1 int);
 
11
CREATE TEMPORARY TABLE tmp3(c1 int);
 
12
CREATE TABLE t(c1 int);
 
13
DROP TEMPORARY TABLE IF EXISTS tmp;
 
14
DROP TEMPORARY TABLE IF EXISTS tmp;
 
15
DROP TEMPORARY TABLE IF EXISTS tmp, tmp1;
 
16
DROP TEMPORARY TABLE tmp3;
 
17
DROP TABLE IF EXISTS tmp2, t;
 
18
DROP TABLE IF EXISTS tmp2, t;
 
19
SELECT GET_LOCK("a",10);
 
20
GET_LOCK("a",10)
 
21
1
 
22
USE test;
 
23
SELECT GET_LOCK("a",10);
 
24
GET_LOCK("a",10)
 
25
1
 
26
show binlog events from <binlog_start>;
 
27
Log_name        Pos     Event_type      Server_id       End_log_pos     Info
 
28
master-bin.000001       #       Query   #       #       CREATE DATABASE `drop-temp+table-test`
 
29
master-bin.000001       #       Query   #       #       use `drop-temp+table-test`; CREATE TABLE t(c1 int)
 
30
master-bin.000001       #       Query   #       #       use `drop-temp+table-test`; DROP TABLE IF EXISTS `t` /* generated by server */
 
31
master-bin.000001       #       Query   #       #       use `drop-temp+table-test`; DROP TABLE IF EXISTS tmp2, t
 
32
DROP DATABASE `drop-temp+table-test`;