~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/session_dictionary/savepoints.cc

  • Committer: Brian Aker
  • Date: 2010-11-17 00:25:17 UTC
  • mto: (1934.1.2 build) (1939.1.1 quick)
  • mto: This revision was merged to the branch mainline in revision 1935.
  • Revision ID: brian@tangent.org-20101117002517-32jjkojvwpl23ccj
Fix define, make sure that all tests are updated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
namespace session_dictionary {
26
26
 
 
27
#define LARGEST_USER_SAVEPOINT_NAME 128
 
28
 
27
29
Savepoints::Savepoints() :
28
30
  drizzled::plugin::TableFunction("DATA_DICTIONARY", "USER_SAVEPOINTS")
29
31
{
30
 
  add_field("SAVEPOINT_NAME", drizzled::plugin::TableFunction::STRING, LARGEST_USER_VARIABLE_NAME, false);
 
32
  add_field("SAVEPOINT_NAME", drizzled::plugin::TableFunction::STRING, LARGEST_USER_SAVEPOINT_NAME, false);
31
33
}
32
34
 
33
35
Savepoints::Generator::Generator(drizzled::Field **arg) :