diff options
author | monty@mishka.local <> | 2004-09-17 03:08:23 +0300 |
---|---|---|
committer | monty@mishka.local <> | 2004-09-17 03:08:23 +0300 |
commit | 095f7e874087183fdc2fc914708b579175da95f3 (patch) | |
tree | a8b336253346895e427b74008617db6d076f5fa3 /mysql-test/r/key.result | |
parent | 37864e2727718a1e266461a0704104ce1cb6d436 (diff) | |
download | mariadb-git-095f7e874087183fdc2fc914708b579175da95f3.tar.gz |
Removed wrong warnings in test suite (This was because select_insert / select_create results was not freed.
Added thd to openfrm() for initialization of TABLE->in_use. This fixed a bug in BDB handling where table->in_use was used early
Diffstat (limited to 'mysql-test/r/key.result')
-rw-r--r-- | mysql-test/r/key.result | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mysql-test/r/key.result b/mysql-test/r/key.result index bb553825caa..98ff5fad7b2 100644 --- a/mysql-test/r/key.result +++ b/mysql-test/r/key.result @@ -110,7 +110,11 @@ name_id name SELECT * FROM t2 WHERE name='[T,U]_axpby'; name_id name 2 [T,U]_axpby -drop table t1,t2; +CREATE TABLE t3 SELECT * FROM t2 WHERE name='[T,U]_axpby'; +SELECT * FROM t2 WHERE name='[T,U]_axpby'; +name_id name +2 [T,U]_axpby +drop table t1,t2,t3; create table t1 ( SEQNO numeric(12 ) not null, |