~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/t/variables.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:
358
358
select @@session.key_buffer_size;
359
359
 
360
360
--error 1229
 
361
set ft_boolean_syntax = @@init_connect;
 
362
--error 1231
 
363
set global ft_boolean_syntax = @@init_connect;
 
364
--error 1229
361
365
set init_connect = NULL;
362
366
set global init_connect = NULL;
 
367
--error 1229
 
368
set ft_boolean_syntax = @@init_connect;
 
369
--error 1231
 
370
set global ft_boolean_syntax = @@init_connect;
363
371
 
364
372
# Bug#3754 SET GLOBAL myisam_max_sort_file_size doesn't work as
365
 
# expected: check that there is no overflow when 64-bit
 
373
# expected: check that there is no overflow when 64-bit unsigned
366
374
# variables are set
367
375
 
368
376
set global myisam_max_sort_file_size=4294967296;
421
429
#
422
430
# What default width have numeric types?
423
431
create table t1 (
424
 
  c1 int,
425
 
  c2 int,
 
432
  c1 tinyint,
 
433
  c2 smallint,
426
434
  c3 mediumint,
427
435
  c4 int,
428
436
  c5 bigint);