~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/variables.test

  • Committer: Brian Aker
  • Date: 2009-09-27 22:48:02 UTC
  • mfrom: (1124.2.12 bug-fixes)
  • Revision ID: brian@gaz-20090927224802-n68yp85ka9l9xf2f
Merge bug fix from Medina

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
 
if(`select strcmp(@arch,"i386")`)
 
413
if(!`select strcmp(@arch,"i386")`)
414
414
{
415
415
  --disable_warnings
416
416
}
420
420
select @@max_heap_table_size > 0;
421
421
set @@max_heap_table_size= 4294967296;
422
422
select @@max_heap_table_size > 0;
 
423
--enable_warnings
423
424
#
424
425
# Bug #11775 Variable character_set_system does not exist (sometimes)
425
426
#