diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 18:00:34 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 18:00:34 +0000 |
commit | 3f619478f796eddbba6e39502fe941b285dd97b1 (patch) | |
tree | e2c7b5777f728320e5b5542b6213fd3591ba51e2 /mysql-test/suite/binlog/r/binlog_tmp_table.result | |
parent | Initial commit. (diff) | |
download | mariadb-upstream.tar.xz mariadb-upstream.zip |
Adding upstream version 1:10.11.6.upstream/1%10.11.6upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'mysql-test/suite/binlog/r/binlog_tmp_table.result')
-rw-r--r-- | mysql-test/suite/binlog/r/binlog_tmp_table.result | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/mysql-test/suite/binlog/r/binlog_tmp_table.result b/mysql-test/suite/binlog/r/binlog_tmp_table.result new file mode 100644 index 00000000..bfc26aaf --- /dev/null +++ b/mysql-test/suite/binlog/r/binlog_tmp_table.result @@ -0,0 +1,67 @@ +RESET MASTER; +connect master,127.0.0.1,root,,test,$MASTER_MYPORT,; +connect master1,127.0.0.1,root,,test,$MASTER_MYPORT,; +create table foo (a int); +flush logs; +connection master; +create temporary table tmp1_foo like foo; +connection master1; +create temporary table tmp2_foo (a int); +connection master; +insert into tmp1_foo values (1), (2), (3), (4); +connection master1; +replace into tmp2_foo values (1), (2), (3), (4); +connection master; +update tmp1_foo set a=2*a-1; +connection master1; +update tmp2_foo set a=2*a; +connection master; +delete from tmp1_foo where a < 5; +connection master1; +delete from tmp2_foo where a < 5; +connection master; +insert into foo select * from tmp1_foo; +connection master1; +insert into foo select * from tmp2_foo; +connection master; +truncate table tmp1_foo; +connection master1; +truncate table tmp2_foo; +flush logs; +connection default; +select * from foo; +a +5 +7 +6 +8 +drop table foo; +create table foo (a int); +select * from foo; +a +5 +7 +6 +8 +drop table foo; +RESET MASTER; +connect con1,localhost,root,,test,$MASTER_MYPORT,$MASTER_MYSOCK; +connect con2,localhost,root,,test,$MASTER_MYPORT,$MASTER_MYSOCK; +connection con1; +create database b51226; +use b51226; +create temporary table t1(i int); +connection con2; +use b51226; +create temporary table t1(i int); +connection con1; +create temporary table t1(i int); +ERROR 42S01: Table 't1' already exists +disconnect con1; +connection default; +connection con2; +insert into t1 values(1); +disconnect con2; +connection default; +DROP DATABASE b51226; +FLUSH LOGS; |