~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/t/case.test

  • Committer: brian
  • Date: 2008-07-03 12:39:14 UTC
  • Revision ID: brian@localhost.localdomain-20080703123914-lry82qf74f6cbyzs
Disabling myisam tools until incomming link patch from Monty

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 BIGINT columns 
 
159
# #30782: Truncated UNSIGNED BIGINT columns 
160
160
#
161
 
create table t1 (a int, b bigint);
 
161
create table t1 (a int, b bigint unsigned);
162
162
create table t2 (c int);
163
163
insert into t1 (a, b) values (1,4572794622775114594), (2,18196094287899841997),
164
164
  (3,11120436154190595086);