~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/errors.result

  • Committer: Brian Aker
  • Date: 2008-12-16 07:07:50 UTC
  • Revision ID: brian@tangent.org-20081216070750-o5ykltxxqvn2awrx
Fixed errors test.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
ERROR 42S22: Unknown column 'b' in 'field list'
25
25
drop table t1;
26
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';
 
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
29
28
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;
 
29
ERROR 42000: Column length too big for column 'a' (max = 16383); use BLOB or TEXT instead
32
30
CREATE TABLE t1 (a INT);
33
31
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));
34
32
a
40
38
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));
41
39
a
42
40
1
 
41
Warnings:
 
42
Error   1365    Division by 0
 
43
Error   1365    Division by 0
43
44
DROP TABLE t1;
44
45
CREATE TABLE t1( a INT );
45
46
SELECT b FROM t1;