~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/variables.test

  • Committer: Brian Aker
  • Date: 2009-09-26 02:16:50 UTC
  • mfrom: (1124.2.11 bug-fixes)
  • Revision ID: brian@gaz-20090926021650-u2pc495bh4vpjt7i
Merge for bug fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
407
407
#
408
408
# Bug #10351: Setting ulong variable to > MAX_ULONG fails on 32-bit platform
409
409
#
410
 
 
 
410
--disable_query_log
 
411
select VARIABLE_VALUE from information_schema.GLOBAL_VARIABLES where VARIABLE_NAME like "VERSION_COMPILE_MACHINE" into @arch;
 
412
--enable_query_log
 
413
if(`select strcmp(@arch,"i386")`)
 
414
{
 
415
  --disable_warnings
 
416
}
411
417
set @@max_heap_table_size= 4294967296;
412
418
select @@max_heap_table_size > 0;
413
419
set global max_heap_table_size= 4294967296;
414
420
select @@max_heap_table_size > 0;
415
421
set @@max_heap_table_size= 4294967296;
416
422
select @@max_heap_table_size > 0;
417
 
 
418
423
#
419
424
# Bug #11775 Variable character_set_system does not exist (sometimes)
420
425
#