~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/session_dictionary/sessions.cc

  • Committer: Andrew Hutchings
  • Date: 2011-06-13 17:48:00 UTC
  • mto: This revision was merged to the branch mainline in revision 2332.
  • Revision ID: andrew@linuxjedi.co.uk-20110613174800-9yxgrjrvc14c8big
Fix valgrind suppression
Remove some admin stuff missed out

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
  add_field("QUERY", plugin::TableFunction::STRING, PROCESS_LIST_WIDTH, true);
52
52
  add_field("HAS_GLOBAL_LOCK", plugin::TableFunction::BOOLEAN, 0, false);
53
53
  add_field("IS_INTERACTIVE", plugin::TableFunction::BOOLEAN, 0, false);
54
 
  add_field("IS_ADMIN", plugin::TableFunction::BOOLEAN, 0, false);
55
54
  add_field("IS_CONSOLE", plugin::TableFunction::BOOLEAN, 0, false);
56
55
}
57
56
 
131
130
    /* IS_INTERACTIVE */
132
131
    push(tmp->getClient()->isInteractive());
133
132
 
134
 
    /* IS_ADMIN */
135
 
    push(tmp->getClient()->isAdmin());
136
 
 
137
133
    /* IS_CONSOLE */
138
134
    push(tmp->getClient()->isConsole());
139
135