~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/registry_dictionary/plugins.cc

  • Committer: Brian Aker
  • Date: 2010-12-20 07:54:13 UTC
  • mto: (2015.1.1 clean)
  • mto: This revision was merged to the branch mainline in revision 2018.
  • Revision ID: brian@tangent.org-20101220075413-yvbnjgqm92mr6ldl
Fix issues with some columns incorrectly reporting NULL if they were of
BOOLEAN type.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
{
30
30
  add_field("PLUGIN_NAME");
31
31
  add_field("PLUGIN_TYPE");
32
 
  add_field("IS_ACTIVE", plugin::TableFunction::BOOLEAN);
 
32
  add_field("IS_ACTIVE", plugin::TableFunction::BOOLEAN, 0, false);
33
33
  add_field("MODULE_NAME");
34
34
}
35
35