~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/variables.test

Merged from jay.

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