~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/include/have_blackhole.inc

  • Committer: Patrick Crews
  • Date: 2010-08-02 18:05:48 UTC
  • mto: (1680.2.3 build)
  • mto: This revision was merged to the branch mainline in revision 1682.
  • Revision ID: gleebix@gmail.com-20100802180548-f3x43bny1avyjdni
Updated include files for the test suite that were using TRUE/FALSE vs. YES/NO for data_dictionary queries.  Was causing some tests to be skipped unneccesarily

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
disable_query_log;
2
2
--require r/true.require
3
 
select (is_active = 'TRUE') as `TRUE` from data_dictionary.plugins where PLUGIN_NAME = 'blackhole';
 
3
select (is_active = 'YES') as `TRUE` from data_dictionary.plugins where PLUGIN_NAME = 'blackhole';
4
4
enable_query_log;