diff options
author | unknown <serg@serg.mysql.com> | 2001-10-09 16:01:06 +0200 |
---|---|---|
committer | unknown <serg@serg.mysql.com> | 2001-10-09 16:01:06 +0200 |
commit | a0ed9744f3d12e16e0fa5e784a37f21d7a1d2faf (patch) | |
tree | bace3e172eb9211454c99657fb4493bb3159d503 /mysql-test/r/err000001.result | |
parent | 93cc6444ccad2ace36ba354cd96ffe8ede676761 (diff) | |
parent | 85e02d693c10553fd15c1193865a7e6996545838 (diff) | |
download | mariadb-git-a0ed9744f3d12e16e0fa5e784a37f21d7a1d2faf.tar.gz |
merged
BitKeeper/etc/ignore:
auto-union
BitKeeper/deleted/.del-ft_search.c~c011cb6e8041bb59:
the file is deleted anyway
include/my_global.h:
merder
myisam/ft_boolean_search.c:
huh?
mysql-test/r/fulltext.result:
use local
mysql-test/r/fulltext_cache.result:
ur
mysql-test/r/fulltext_left_join.result:
ur
mysql-test/r/fulltext_multi.result:
ur
mysql-test/r/fulltext_order_by.result:
ur
Diffstat (limited to 'mysql-test/r/err000001.result')
-rw-r--r-- | mysql-test/r/err000001.result | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/mysql-test/r/err000001.result b/mysql-test/r/err000001.result new file mode 100644 index 00000000000..5afecc6d600 --- /dev/null +++ b/mysql-test/r/err000001.result @@ -0,0 +1,25 @@ +drop table if exists t1; +insert into t1 values(1); +Table 'test.t1' doesn't exist +delete from t1; +Table 'test.t1' doesn't exist +update t1 set a=1; +Table 'test.t1' doesn't exist +create table t1 (a int); +select count(test.t1.b) from t1; +Unknown column 'test.t1.b' in 'field list' +select count(not_existing_database.t1) from t1; +Unknown table 'not_existing_database' in field list +select count(not_existing_database.t1.a) from t1; +Unknown table 'not_existing_database.t1' in field list +select count(not_existing_database.t1.a) from not_existing_database.t1; +Got one of the listed errors +select 1 from t1 order by 2; +Unknown column '2' in 'order clause' +select 1 from t1 group by 2; +Unknown column '2' in 'group statement' +select 1 from t1 order by t1.b; +Unknown column 't1.b' in 'order clause' +select count(*),b from t1; +Unknown column 'b' in 'field list' +drop table t1; |