diff options
author | unknown <malff/marcsql@weblab.(none)> | 2007-09-04 14:38:26 -0600 |
---|---|---|
committer | unknown <malff/marcsql@weblab.(none)> | 2007-09-04 14:38:26 -0600 |
commit | 3a94137ce00681c1abe92ad5590a3604ef90a07d (patch) | |
tree | ce61ac78cd97b8f62c48e42f8db16b9a148f7d86 /mysql-test/r/handler.result | |
parent | 7cafddc3454e60a95ef1f7059d3b5954a1e4d1b6 (diff) | |
parent | 0f70a032c2b5ae22f92f70b125775447a220fa5e (diff) | |
download | mariadb-git-3a94137ce00681c1abe92ad5590a3604ef90a07d.tar.gz |
Merge weblab.(none):/home/marcsql/TREE/mysql-5.0-base
into weblab.(none):/home/marcsql/TREE/mysql-5.0-rt-merge
mysql-test/r/sp.result:
Auto merged
mysql-test/t/mysql.test:
Auto merged
mysql-test/t/sp.test:
Auto merged
Diffstat (limited to 'mysql-test/r/handler.result')
-rw-r--r-- | mysql-test/r/handler.result | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mysql-test/r/handler.result b/mysql-test/r/handler.result index 5e123df9103..dc3750e16ea 100644 --- a/mysql-test/r/handler.result +++ b/mysql-test/r/handler.result @@ -489,3 +489,16 @@ handler t1 open; ERROR HY000: Table storage engine for 't1' doesn't have this option --> client 1 drop table t1; +drop table if exists t1; +create table t1 (a int); +handler t1 open as t1_alias; +handler t1_alias read a next; +ERROR HY000: Key 'a' doesn't exist in table 't1_alias' +handler t1_alias READ a next where inexistent > 0; +ERROR 42S22: Unknown column 'inexistent' in 'field list' +handler t1_alias read a next; +ERROR HY000: Key 'a' doesn't exist in table 't1_alias' +handler t1_alias READ a next where inexistent > 0; +ERROR 42S22: Unknown column 'inexistent' in 'field list' +handler t1_alias close; +drop table t1; |