~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/release_savepoint.h

Merge Stewart's dead code removal

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2009 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2009 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
23
23
 
24
24
#include <drizzled/statement.h>
25
25
 
 
26
class Session;
 
27
 
26
28
namespace drizzled
27
29
{
28
30
namespace statement
31
33
class ReleaseSavepoint : public Statement
32
34
{
33
35
public:
34
 
  ReleaseSavepoint(Session *in_session, const lex_string_t &ident) :
35
 
    Statement(in_session)
36
 
  {
37
 
    getSession()->getLex()->sql_command= SQLCOM_RELEASE_SAVEPOINT;
38
 
    getSession()->getLex()->ident= ident;
39
 
  }
 
36
  ReleaseSavepoint(Session *in_session)
 
37
    :
 
38
      Statement(in_session)
 
39
  {}
40
40
 
41
41
  bool execute();
42
 
  bool isTransactional()
43
 
  {
44
 
    return true;
45
 
  }
46
42
};
47
43
 
48
 
} /* namespace statement */
 
44
} /* end namespace statement */
49
45
 
50
 
} /* namespace drizzled */
 
46
} /* end namespace drizzled */
51
47
 
52
48
#endif /* DRIZZLED_STATEMENT_RELEASE_SAVEPOINT_H */