summaryrefslogtreecommitdiff
path: root/mysql-test/extra
diff options
context:
space:
mode:
authorunknown <aelkin/elkin@dsl-hkigw8-febefb00-148.dhcp.inet.fi>2006-10-23 14:42:00 +0300
committerunknown <aelkin/elkin@dsl-hkigw8-febefb00-148.dhcp.inet.fi>2006-10-23 14:42:00 +0300
commit5438ab9cd50aebbd7cb299b8f6dfdc1d1ad3d989 (patch)
treed7030db72deb2fd6486f28e7c3463a6e6c4b570b /mysql-test/extra
parent81eb1ccda26658d4cae69cc396413bb2819221ff (diff)
parent61c9a7d55c8238c2aeb95db0260992f936f1fe4a (diff)
downloadmariadb-git-5438ab9cd50aebbd7cb299b8f6dfdc1d1ad3d989.tar.gz
Merge aelkin@bk-internal.mysql.com:/home/bk/mysql-5.1-rpl
into dsl-hkigw8-febefb00-148.dhcp.inet.fi:/home/elkin/MySQL/TEAM/FIXES/5.1/bug22027_create_select_exists sql/sql_show.cc: Auto merged mysql-test/r/binlog_row_mix_innodb_myisam.result: SCCS merged
Diffstat (limited to 'mysql-test/extra')
-rw-r--r--mysql-test/extra/binlog_tests/binlog.test13
1 files changed, 13 insertions, 0 deletions
diff --git a/mysql-test/extra/binlog_tests/binlog.test b/mysql-test/extra/binlog_tests/binlog.test
index 81c813e78d0..82c09301110 100644
--- a/mysql-test/extra/binlog_tests/binlog.test
+++ b/mysql-test/extra/binlog_tests/binlog.test
@@ -59,4 +59,17 @@ insert into t1 values(null);
select * from t1;
drop table t1;
+# bug#22027
+create table t1 (a int);
+create table if not exists t2 select * from t1;
+
+# bug#22762
+create temporary table tt1 (a int);
+create table if not exists t3 like tt1;
+
+--replace_column 2 # 5 #
+--replace_regex /table_id: [0-9]+/table_id: #/ /\/\* xid=.* \*\//\/* xid= *\//
+show binlog events;
+drop table t1,t2,t3,tt1;
+
-- source extra/binlog_tests/binlog_insert_delayed.test