1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

several fixes to make tests pass in embedded-server mode

This commit is contained in:
holyfoot/hf@mysql.com/deer.(none)
2006-11-13 20:06:45 +04:00
parent 5d66d7fb14
commit 7ece4caad3
26 changed files with 336 additions and 371 deletions

View File

@ -299,12 +299,6 @@ select count(*) from t2;
count(*)
25500
drop table t1,t2,t3;
create table t1 (n int);
create view v1 as select * from t1;
insert delayed into v1 values (1);
ERROR HY000: 'test.v1' is not BASE TABLE
drop table t1;
drop view v1;
create table t1 (id int primary key, data int);
insert into t1 values (1, 1), (2, 2), (3, 3);
select row_count();