1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

After merge fixes

Some bigger code changes was necessary becasue of the multi-table-update and the new HANDLER code
This commit is contained in:
monty@mysql.com
2004-10-07 10:50:13 +03:00
parent 62f3cd6a31
commit 6239edc1d1
31 changed files with 193 additions and 124 deletions

View File

@ -42,11 +42,11 @@ table_id
test.t2
handler t1 open as a1;
Not unique table/alias: 'a1'
ERROR 42000: Not unique table/alias: 'a1'
handler t1 open as a2;
Not unique table/alias: 'a2'
ERROR 42000: Not unique table/alias: 'a2'
handler t2 open;
Not unique table/alias: 't2'
ERROR 42000: Not unique table/alias: 't2'
handler a1 read first limit 9;
table_id
test.t1
@ -74,7 +74,6 @@ test.t2
flush table t2;
handler t2 close;
ERROR 42S02: Unknown table 't2' in HANDLER
drop table t1;
drop table t2;
create table t1(table_id char(20) primary key);