~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/status_helper.cc

  • Committer: Monty Taylor
  • Date: 2010-10-25 18:26:50 UTC
  • mto: (1879.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 1880.
  • Revision ID: mordred@inaugust.com-20101025182650-7k11plnoi78sy1gl
Split set_var.* into sys_var.* and set_var.*

Show diffs side-by-side

added added

removed removed

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