~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/variables.test

  • Committer: Brian Aker
  • Date: 2009-09-30 03:46:24 UTC
  • mfrom: (1124.2.13 bug-fixes)
  • Revision ID: brian@gaz-20090930034624-2y1qk02vt8dhz6gc
Bug fix Diego

Show diffs side-by-side

added added

removed removed

Lines of Context:
410
410
--disable_query_log
411
411
select VARIABLE_VALUE from information_schema.GLOBAL_VARIABLES where VARIABLE_NAME like "VERSION_COMPILE_MACHINE" into @arch;
412
412
--enable_query_log
 
413
#Macos 32-bit uses i386, some(all?) linux use i686 and there may be some i586
413
414
if(!`select strcmp(@arch,"i386")`)
414
415
{
415
416
  --disable_warnings
416
417
}
 
418
if(!`select strcmp(@arch,"i586")`)
 
419
{
 
420
  --disable_warnings
 
421
}
 
422
if(!`select strcmp(@arch,"i686")`)
 
423
{
 
424
  --disable_warnings
 
425
}
 
426
 
417
427
set @@max_heap_table_size= 4294967296;
418
428
select @@max_heap_table_size > 0;
419
429
set global max_heap_table_size= 4294967296;