~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/case.test

  • Committer: Brian Aker
  • Date: 2008-10-02 19:18:43 UTC
  • mto: (438.4.1 drizzle-clean-code)
  • mto: This revision was merged to the branch mainline in revision 435.
  • Revision ID: brian@tangent.org-20081002191843-tw3nnufik8qwf9rz
Removed UNSIGNED from parser.

Show diffs side-by-side

added added

removed removed

Lines of Context:
156
156
--echo End of 4.1 tests
157
157
 
158
158
#
159
 
# #30782: Truncated UNSIGNED BIGINT columns 
 
159
# #30782: Truncated BIGINT columns 
160
160
#
161
 
create table t1 (a int, b bigint unsigned);
 
161
create table t1 (a int, b bigint);
162
162
create table t2 (c int);
163
163
insert into t1 (a, b) values (1,4572794622775114594), (2,18196094287899841997),
164
164
  (3,11120436154190595086);