~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/auth_schema/module.cc

  • Committer: Daniel
  • Date: 2011-10-10 04:56:21 UTC
  • mto: This revision was merged to the branch mainline in revision 2437.
  • Revision ID: daniel@ubuntu-10-20111010045621-lav426gcxgksx0wb
Enable plugin by default.  Always escape and backtick quote the auth table name.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
 
55
55
static void init_options(module::option_context &context)
56
56
{
57
 
  auth_schema= new AuthSchema();
 
57
  auth_schema= new AuthSchema(true);
58
58
 
59
59
  context("table",
60
60
    po::value<string>(&auth_schema->sysvar_table)->default_value("auth.users"),