~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/errors.result

  • Committer: Brian Aker
  • Date: 2010-08-09 18:04:12 UTC
  • mfrom: (1689.3.7 staging)
  • Revision ID: brian@gaz-20100809180412-olurwh51ojllev6p
Merge in heap conversion, and case insensitive patch, and remove need for
M_HASH in session.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
drop table if exists t1;
2
2
insert into t1 values(1);
3
 
ERROR 42S02: Unknown table 'test.t1'
 
3
ERROR 42S02: Table 'test.t1' doesn't exist
4
4
delete from t1;
5
 
ERROR 42S02: Unknown table 'test.t1'
 
5
ERROR 42S02: Table 'test.t1' doesn't exist
6
6
update t1 set a=1;
7
 
ERROR 42S02: Unknown table 'test.t1'
 
7
ERROR 42S02: Table 'test.t1' doesn't exist
8
8
create table t1 (a int);
9
9
select count(test.t1.b) from t1;
10
10
ERROR 42S22: Unknown column 'test.t1.b' in 'field list'
23
23
select count(*),b from t1;
24
24
ERROR 42S22: Unknown column 'b' in 'field list'
25
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
26
28
create table t1 (a varchar(66000));
27
29
ERROR 42000: Column length too big for column 'a' (max = 16383); use BLOB or TEXT instead
28
30
CREATE TABLE t1 (a INT);
29
31
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));
30
 
ERROR 22012: Division by 0
 
32
a
 
33
Warnings:
 
34
Error   1365    Division by 0
31
35
INSERT INTO t1 VALUES(1);
32
36
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));
33
 
ERROR 22012: Division by 0
 
37
a
 
38
1
 
39
Warnings:
 
40
Error   1365    Division by 0
34
41
INSERT INTO t1 VALUES(2),(3);
35
42
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));
36
 
ERROR 22012: Division by 0
 
43
a
 
44
1
 
45
Warnings:
 
46
Error   1365    Division by 0
37
47
DROP TABLE t1;
38
48
CREATE TABLE t1( a INT );
39
49
SELECT b FROM t1;