~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/session_dictionary/savepoints.cc

  • Committer: Marisa Plumb
  • Date: 2010-12-04 02:38:29 UTC
  • mto: This revision was merged to the branch mainline in revision 1984.
  • Revision ID: marisa.plumb@gmail.com-20101204023829-2khzxh30wxi256db
updates to a few sql docs 

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#include <config.h>
 
21
#include "config.h"
22
22
 
23
 
#include <plugin/session_dictionary/dictionary.h>
 
23
#include "plugin/session_dictionary/dictionary.h"
24
24
 
25
25
namespace session_dictionary {
26
26
 
27
27
#define LARGEST_USER_SAVEPOINT_NAME 128
28
28
 
29
29
Savepoints::Savepoints() :
30
 
  drizzled::plugin::TableFunction("DATA_DICTIONARY", "USER_DEFINED_SAVEPOINTS")
 
30
  drizzled::plugin::TableFunction("DATA_DICTIONARY", "USER_SAVEPOINTS")
31
31
{
32
32
  add_field("SAVEPOINT_NAME", drizzled::plugin::TableFunction::STRING, LARGEST_USER_SAVEPOINT_NAME, false);
33
33
}