diff options
author | unknown <monty@mashka.mysql.fi> | 2003-03-16 16:28:30 +0200 |
---|---|---|
committer | unknown <monty@mashka.mysql.fi> | 2003-03-16 16:28:30 +0200 |
commit | 9681f4a8cd242e3828f211e0bed5235e70ee5f4e (patch) | |
tree | c05688514a8bfc597bdeb7bbae3718151a59fd89 /mysql-test | |
parent | 11117565a3682ea800d1b988775cd05ef78b4fb8 (diff) | |
download | mariadb-git-9681f4a8cd242e3828f211e0bed5235e70ee5f4e.tar.gz |
Write binlog before commit when doing INSERT ... SELECT
mysql-test/r/create.result:
After merge fix
sql/sql_insert.cc:
Write binlog before commit
sql/sql_update.cc:
Added comment
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/r/create.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/create.result b/mysql-test/r/create.result index c3083dbfb03..0cc98c38d49 100644 --- a/mysql-test/r/create.result +++ b/mysql-test/r/create.result @@ -58,6 +58,13 @@ a$1 $b c$ create table test_$1.test2$ (a int); drop table test_$1.test2$; drop database test_$1; +create table `` (a int); +Incorrect table name '' +drop table if exists ``; +Incorrect table name '' +create table t1 (`` int); +Incorrect column name '' +drop table if exists t1; create table t1 (a int auto_increment not null primary key, B CHAR(20)); insert into t1 (b) values ("hello"),("my"),("world"); create table t2 (key (b)) select * from t1; |