~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/variables.test

  • Committer: Brian Aker
  • Date: 2008-11-04 15:39:09 UTC
  • mfrom: (575.1.2 devel)
  • Revision ID: brian@tangent.org-20081104153909-c72hn65udxs1ccal
Merge of Monty's work

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 unsigned
 
365
# expected: check that there is no overflow when 64-bit
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 tinyint,
425
 
  c2 smallint,
 
424
  c1 int,
 
425
  c2 int,
426
426
  c3 mediumint,
427
427
  c4 int,
428
428
  c5 bigint);