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

auto-merge

This commit is contained in:
Tatiana A. Nurnberg
2008-09-16 06:38:52 +02:00
29 changed files with 164 additions and 915 deletions

View File

@@ -0,0 +1,6 @@
DROP TABLE IF EXISTS t1, t2;
set @@session.binlog_format=row;
create table t1 (a int);
insert into t1 values (1);
create table t2 select * from t1;
drop table t1, t2;