~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/variables.test

Added code necessary for building plugins dynamically.
Merged in changes from lifeless to allow autoreconf to work.
Touching plugin.ini files now triggers a rebuid - so config/autorun.sh is no
longer required to be run after touching those.
Removed the duplicate plugin names - also removed the issue that getting them
different would silently fail weirdly later.

Show diffs side-by-side

added added

removed removed

Lines of Context:
402
402
--disable_query_log
403
403
select VARIABLE_VALUE from information_schema.GLOBAL_VARIABLES where VARIABLE_NAME like "VERSION_COMPILE_MACHINE" into @arch;
404
404
--enable_query_log
405
 
#Macos 32-bit uses i386, some(all?) linux use i686 and there may be some i586
406
 
if(!`select strcmp(@arch,"i386")`)
407
 
{
408
 
  --disable_warnings
409
 
}
410
 
if(!`select strcmp(@arch,"i586")`)
411
 
{
412
 
  --disable_warnings
413
 
}
414
 
if(!`select strcmp(@arch,"i686")`)
415
 
{
416
 
  --disable_warnings
417
 
}
418
 
 
419
 
set @@max_heap_table_size= 4294967296;
420
 
select @@max_heap_table_size > 0;
421
 
set global max_heap_table_size= 4294967296;
422
 
select @@max_heap_table_size > 0;
423
 
set @@max_heap_table_size= 4294967296;
424
 
select @@max_heap_table_size > 0;
 
405
# We technically do not care about 32bit hardware. -Brian
 
406
#set @@max_heap_table_size= 4294967296;
 
407
#select @@max_heap_table_size > 0;
 
408
#set global max_heap_table_size= 4294967296;
 
409
#select @@max_heap_table_size > 0;
 
410
#set @@max_heap_table_size= 4294967296;
 
411
#select @@max_heap_table_size > 0;
425
412
--enable_warnings
426
413
#
427
414
# Bug #11775 Variable character_set_system does not exist (sometimes)