~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/session_dictionary/processlist.cc

  • Committer: Lee Bieber
  • Date: 2010-12-13 20:50:56 UTC
  • mfrom: (1993.2.3 build)
  • Revision ID: kalebral@gmail.com-20101213205056-rkzi5ve3hc0mpnws
Merge Andrew - fix bug 686773: TableFunction::Generator::push() needs assert
Merge Stewart - ON DUPLICATE KEY UPDATE support for HailDB
Merge Monty - fix bug 688819: drizzle fails to build from source in natty 

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
  add_field("ID", plugin::TableFunction::NUMBER, 0, false);
42
42
  add_field("USER", 16);
43
43
  add_field("HOST", NI_MAXHOST);
44
 
  add_field("DB");
 
44
  add_field("DB", plugin::TableFunction::STRING, MAXIMUM_IDENTIFIER_LENGTH, true);
45
45
  add_field("COMMAND", 16);
46
46
  add_field("TIME", plugin::TableFunction::NUMBER, 0, false);
47
47
  add_field("STATE", plugin::TableFunction::STRING, 256, true);