~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/status_helper.cc

  • Committer: Brian Aker
  • Date: 2010-10-24 01:34:39 UTC
  • mto: This revision was merged to the branch mainline in revision 1875.
  • Revision ID: brian@tangent.org-20101024013439-w9r8qtmt5ihnqtkd
Encapsulate table_name from table_list.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
#include <sstream>
29
29
 
 
30
using namespace drizzled;
30
31
using namespace std;
31
32
 
32
 
namespace drizzled
33
 
{
34
 
 
35
 
extern uint64_t refresh_version;
36
 
extern time_t server_start_time;
37
 
extern time_t flush_status_time;
38
 
 
39
33
static int show_starttime_new(drizzle_show_var *var, char *buff)
40
34
{
41
35
  var->type= SHOW_LONG;
174
168
  {"Uptime_since_flush_status", (char*) &show_flushstatustime_cont_new,   SHOW_FUNC},
175
169
  {NULL, NULL, SHOW_LONGLONG}
176
170
};
177
 
 
178
 
} /* namespace drizzled */