~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/errors.result

  • Committer: Brian Aker
  • Date: 2010-12-20 10:21:10 UTC
  • mto: This revision was merged to the branch mainline in revision 2016.
  • Revision ID: brian@tangent.org-20101220102110-60oh6zarw5n9nhah
Fixing up a, somewhat, hidden unsigned type to solve a few issues around
numbers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
28
26
create table t1 (a varchar(66000));
29
27
ERROR 42000: Column length too big for column 'a' (max = 16383); use BLOB or TEXT instead
30
28
CREATE TABLE t1 (a INT);