~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/memcached_stats/memcached_stats.cc

  • Committer: Brian Aker
  • Date: 2010-01-15 01:41:40 UTC
  • mfrom: (1259.8.3 i_s_work)
  • Revision ID: brian@gaz-20100115014140-0n6kh7fqhp1abqs4
Merge Joe Daly

Show diffs side-by-side

added added

removed removed

Lines of Context:
137
137
  memcached_stats_table= new(std::nothrow) plugin::InfoSchemaTable("MEMCACHED_STATS",
138
138
                                                           memcached_stats_columns,
139
139
                                                           -1, -1, false, false, 0,
140
 
                                                           memcached_stats_methods);
 
140
                                                           memcached_stats_methods,
 
141
                                                           "MEMCACHED_STATS");
141
142
  if (! memcached_stats_table)
142
143
  {
143
144
    return true;
147
148
    new(std::nothrow) plugin::InfoSchemaTable("MEMCACHED_ANALYSIS",
148
149
                                      memcached_analysis_columns,
149
150
                                      -1, -1, false, false, 0,
150
 
                                      memcached_analysis_methods);
 
151
                                      memcached_analysis_methods,
 
152
                                      "MEMCACHED_STATS");
151
153
  if (! memcached_analysis_table)
152
154
  {
153
155
    return true;