~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/variables.test

Merged in latest plugin-slot-reorg.

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
 
 
 
423
--enable_warnings
418
424
#
419
425
# Bug #11775 Variable character_set_system does not exist (sometimes)
420
426
#