~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/command/show_create.h

  • Committer: Monty Taylor
  • Date: 2009-08-17 18:46:08 UTC
  • mto: (1182.1.1 staging)
  • mto: This revision was merged to the branch mainline in revision 1183.
  • Revision ID: mordred@inaugust.com-20090817184608-0b2emowpjr9m6le7
"Fixed" the deadlock test. I'd still like someone to look at what's going on here.

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
 
#ifndef DRIZZLED_STATEMENT_SHOW_CREATE_H
22
 
#define DRIZZLED_STATEMENT_SHOW_CREATE_H
23
 
 
24
 
#include <drizzled/statement.h>
 
21
#ifndef DRIZZLED_COMMAND_SHOW_CREATE_H
 
22
#define DRIZZLED_COMMAND_SHOW_CREATE_H
 
23
 
 
24
#include <drizzled/command.h>
 
25
 
 
26
class Session;
25
27
 
26
28
namespace drizzled
27
29
{
28
 
class Session;
29
 
 
30
 
namespace statement
 
30
namespace command
31
31
{
32
32
 
33
 
class ShowCreate : public Statement
 
33
class ShowCreate : public SqlCommand
34
34
{
35
35
public:
36
 
  ShowCreate(Session *in_session)
 
36
  ShowCreate(enum enum_sql_command in_comm_type,
 
37
             Session *in_session)
37
38
    :
38
 
      Statement(in_session),
39
 
      is_if_not_exists(false)
 
39
      SqlCommand(in_comm_type, in_session)
40
40
  {}
41
41
 
42
 
  bool execute();
43
 
  bool is_if_not_exists;
 
42
  int execute();
44
43
};
45
44
 
46
 
} /* end namespace statement */
 
45
} /* end namespace command */
47
46
 
48
47
} /* end namespace drizzled */
49
48
 
50
 
#endif /* DRIZZLED_STATEMENT_SHOW_CREATE_H */
 
49
#endif /* DRIZZLED_COMMAND_SHOW_CREATE_H */