~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/variables.test

  • Committer: Toru Maesaka
  • Date: 2008-07-17 05:59:20 UTC
  • mto: (202.1.1 toru)
  • mto: This revision was merged to the branch mainline in revision 204.
  • Revision ID: dev@torum.net-20080717055920-10okif50x6nh7b1d
forgot to bzr-add new files in the previous push

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