~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/r/errors.result

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
drop table if exists t1;
 
2
insert into t1 values(1);
 
3
ERROR 42S02: Table 'test.t1' doesn't exist
 
4
delete from t1;
 
5
ERROR 42S02: Table 'test.t1' doesn't exist
 
6
update t1 set a=1;
 
7
ERROR 42S02: Table 'test.t1' doesn't exist
 
8
create table t1 (a int);
 
9
select count(test.t1.b) from t1;
 
10
ERROR 42S22: Unknown column 'test.t1.b' in 'field list'
 
11
select count(not_existing_database.t1) from t1;
 
12
ERROR 42S22: Unknown column 'not_existing_database.t1' in 'field list'
 
13
select count(not_existing_database.t1.a) from t1;
 
14
ERROR 42S22: Unknown column 'not_existing_database.t1.a' in 'field list'
 
15
select count(not_existing_database.t1.a) from not_existing_database.t1;
 
16
Got one of the listed errors
 
17
select 1 from t1 order by 2;
 
18
ERROR 42S22: Unknown column '2' in 'order clause'
 
19
select 1 from t1 group by 2;
 
20
ERROR 42S22: Unknown column '2' in 'group statement'
 
21
select 1 from t1 order by t1.b;
 
22
ERROR 42S22: Unknown column 't1.b' in 'order clause'
 
23
select count(*),b from t1;
 
24
ERROR 42S22: Unknown column 'b' in 'field list'
 
25
drop table t1;
 
26
create table t1 (a int(256));
 
27
ERROR 42000: Display width out of range for column 'a' (max = 255)
 
28
set sql_mode='traditional';
 
29
create table t1 (a varchar(66000));
 
30
ERROR 42000: Column length too big for column 'a' (max = 65535); use BLOB or TEXT instead
 
31
set sql_mode=default;
 
32
CREATE TABLE t1 (a INT);
 
33
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));
 
34
a
 
35
INSERT INTO t1 VALUES(1);
 
36
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));
 
37
a
 
38
1
 
39
INSERT INTO t1 VALUES(2),(3);
 
40
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));
 
41
a
 
42
1
 
43
DROP TABLE t1;
 
44
CREATE TABLE t1( a INT );
 
45
SELECT b FROM t1;
 
46
ERROR 42S22: Unknown column 'b' in 'field list'
 
47
SHOW ERRORS;
 
48
Level   Code    Message
 
49
Error   1054    Unknown column 'b' in 'field list'
 
50
CREATE TABLE t2 SELECT b FROM t1;
 
51
ERROR 42S22: Unknown column 'b' in 'field list'
 
52
SHOW ERRORS;
 
53
Level   Code    Message
 
54
Error   1054    Unknown column 'b' in 'field list'
 
55
INSERT INTO t1 SELECT b FROM t1;
 
56
ERROR 42S22: Unknown column 'b' in 'field list'
 
57
DROP TABLE t1;