~ubuntu-branches/ubuntu/saucy/drizzle/saucy-proposed

« back to all changes in this revision

Viewing changes to tests/r/errors.result

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-03-18 12:12:31 UTC
  • Revision ID: james.westby@ubuntu.com-20100318121231-k6g1xe6cshbwa0f8
Tags: upstream-2010.03.1347
ImportĀ upstreamĀ versionĀ 2010.03.1347

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: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near '(256))' at line 1
 
28
create table t1 (a varchar(66000));
 
29
ERROR 42000: Column length too big for column 'a' (max = 16383); use BLOB or TEXT instead
 
30
CREATE TABLE t1 (a INT);
 
31
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));
 
32
a
 
33
Warnings:
 
34
Error   1365    Division by 0
 
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
Warnings:
 
40
Error   1365    Division by 0
 
41
INSERT INTO t1 VALUES(2),(3);
 
42
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));
 
43
a
 
44
1
 
45
Warnings:
 
46
Error   1365    Division by 0
 
47
DROP TABLE t1;
 
48
CREATE TABLE t1( a INT );
 
49
SELECT b FROM t1;
 
50
ERROR 42S22: Unknown column 'b' in 'field list'
 
51
SHOW ERRORS;
 
52
Level   Code    Message
 
53
Error   1054    Unknown column 'b' in 'field list'
 
54
CREATE TABLE t2 SELECT b FROM t1;
 
55
ERROR 42S22: Unknown column 'b' in 'field list'
 
56
SHOW ERRORS;
 
57
Level   Code    Message
 
58
Error   1054    Unknown column 'b' in 'field list'
 
59
INSERT INTO t1 SELECT b FROM t1;
 
60
ERROR 42S22: Unknown column 'b' in 'field list'
 
61
DROP TABLE t1;