diff options
author | unknown <monty@mysql.com> | 2006-03-29 17:28:40 +0300 |
---|---|---|
committer | unknown <monty@mysql.com> | 2006-03-29 17:28:40 +0300 |
commit | 9f6cf5b6cc04688fb28120df63345e6d39896f72 (patch) | |
tree | daf258f3699521e64ef40579e39c6714eca08925 /mysql-test/r | |
parent | b002c11756aa59273b548c442dd69c8f41a9e9e2 (diff) | |
parent | 8ac1d552861a673bb01b5deb5c9009c312494149 (diff) | |
download | mariadb-git-9f6cf5b6cc04688fb28120df63345e6d39896f72.tar.gz |
Merge bk-internal.mysql.com:/home/bk/mysql-5.1-new
into mysql.com:/home/my/mysql-5.1
mysql-test/r/ndb_condition_pushdown.result:
Auto merged
mysql-test/t/ndb_condition_pushdown.test:
Auto merged
sql/ha_heap.cc:
Auto merged
sql/ha_ndbcluster.cc:
Auto merged
sql/handler.cc:
Auto merged
sql/log.cc:
Auto merged
sql/opt_range.cc:
Auto merged
sql/sql_base.cc:
Auto merged
sql/sql_partition.cc:
Auto merged
storage/csv/ha_tina.cc:
Auto merged
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/lock_multi.result | 7 | ||||
-rw-r--r-- | mysql-test/r/ndb_condition_pushdown.result | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/mysql-test/r/lock_multi.result b/mysql-test/r/lock_multi.result index 73e3a9d32e3..1ab51e9fad5 100644 --- a/mysql-test/r/lock_multi.result +++ b/mysql-test/r/lock_multi.result @@ -36,6 +36,13 @@ lock table t1 write, t2 write; drop table t2; ERROR 42S02: Table 'test.t2' doesn't exist drop table t1; +create table t1 (a int); +create table t2 (a int); +lock table t1 write, t2 write, t1 as t1_2 write, t2 as t2_2 write; + insert t1 select * from t2; +drop table t2; +ERROR 42S02: Table 'test.t2' doesn't exist +drop table t1; create table t1(a int); lock tables t1 write; show columns from t1; diff --git a/mysql-test/r/ndb_condition_pushdown.result b/mysql-test/r/ndb_condition_pushdown.result index 3fbc9a38f60..24fe30604ae 100644 --- a/mysql-test/r/ndb_condition_pushdown.result +++ b/mysql-test/r/ndb_condition_pushdown.result @@ -1,4 +1,4 @@ -DROP TABLE IF EXISTS t1,t2; +DROP TABLE IF EXISTS t1,t2,t3,t4; CREATE TABLE t1 ( auto int(5) unsigned NOT NULL auto_increment, string char(10), |