~ubuntu-branches/ubuntu/saucy/drizzle/saucy-proposed

« back to all changes in this revision

Viewing changes to plugin/debug/module.cc

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-06-19 10:46:49 UTC
  • mfrom: (1.1.6)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20120619104649-e2l0ggd4oz3um0f4
Tags: upstream-7.1.36-stable
ImportĀ upstreamĀ versionĀ 7.1.36-stable

Show diffs side-by-side

added added

removed removed

Lines of Context:
101
101
 
102
102
  bool val_bool()
103
103
  {
104
 
    util::custom_backtrace();
 
104
    call_backtrace();
105
105
    return true;
106
106
  }
107
107
 
151
151
  "debug",
152
152
  "1.1",
153
153
  "Brian Aker",
154
 
  "Useful functions for programmers to debug the server.",
 
154
  N_("Debug functions"),
155
155
  PLUGIN_LICENSE_BSD,
156
 
  initialize, /* Plugin Init */
157
 
  NULL,   /* depends */
158
 
  NULL    /* config options */
 
156
  initialize,
 
157
  NULL,
 
158
  NULL
159
159
}
160
160
DRIZZLE_DECLARE_PLUGIN_END;