mirror of
https://github.com/MariaDB/server.git
synced 2026-05-14 19:07:15 +02:00
after mergemerge
This commit is contained in:
parent
33022c529a
commit
61c12aa299
2 changed files with 9 additions and 3 deletions
|
|
@ -563,6 +563,14 @@ select * from t2;
|
|||
b
|
||||
1
|
||||
drop table t1,t2;
|
||||
create table t1 (a int);
|
||||
create table t1 select * from t1;
|
||||
ERROR HY000: You can't specify target table 't1' for update in FROM clause
|
||||
create table t2 union = (t1) select * from t1;
|
||||
ERROR HY000: You can't specify target table 't1' for update in FROM clause
|
||||
flush tables with read lock;
|
||||
unlock tables;
|
||||
drop table t1;
|
||||
create table t1(column.name int);
|
||||
ERROR 42000: Incorrect table name 'column'
|
||||
create table t1(test.column.name int);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue