~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/errors.test

  • Committer: Brian Aker
  • Date: 2010-12-20 19:24:24 UTC
  • mfrom: (2008.2.5 integer-refactor)
  • Revision ID: brian@tangent.org-20101220192424-iyccxsagvuw43kaz
A rather large and tasty cleanup of issues around ints, and one additional
fix for alter table.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
#
36
36
# Bug #6080: Error message for a field with a display width that is too long
37
37
#
38
 
--error ER_PARSE_ERROR
39
 
create table t1 (a int(256));
40
38
--error ER_TOO_BIG_FIELDLENGTH
41
39
create table t1 (a varchar(66000));
42
40