~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Monty Taylor
  • Date: 2008-07-05 11:20:18 UTC
  • mto: This revision was merged to the branch mainline in revision 62.
  • Revision ID: monty@inaugust.com-20080705112018-fr12kkmgphtu7m29
Changes so that removal of duplicate curr_dir from my_sys.h work.

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);