~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/variables.test

  • Committer: Mats Kindahl
  • Date: 2008-08-07 06:24:22 UTC
  • mfrom: (265 drizzle)
  • mto: (264.1.19 codestyle)
  • mto: This revision was merged to the branch mainline in revision 266.
  • Revision ID: mats@mysql.com-20080807062422-20kyv6ssp4grfm0s
Manual merge of lp:drizzle into ~mkindahl/remove-mem-casts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
362
362
set global init_connect = NULL;
363
363
 
364
364
# Bug#3754 SET GLOBAL myisam_max_sort_file_size doesn't work as
365
 
# expected: check that there is no overflow when 64-bit
 
365
# expected: check that there is no overflow when 64-bit unsigned
366
366
# variables are set
367
367
 
368
368
set global myisam_max_sort_file_size=4294967296;
421
421
#
422
422
# What default width have numeric types?
423
423
create table t1 (
424
 
  c1 int,
425
 
  c2 int,
 
424
  c1 tinyint,
 
425
  c2 smallint,
426
426
  c3 mediumint,
427
427
  c4 int,
428
428
  c5 bigint);