~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/execute.h

  • Committer: Brian Aker
  • Date: 2010-11-28 08:56:23 UTC
  • mfrom: (1958.1.2 catalogs)
  • Revision ID: brian@tangent.org-20101128085623-dray43djzamqs3n2
Merge in WAIT

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
{
39
39
  bool is_quiet;
40
40
  bool is_concurrent;
 
41
  bool should_wait;
41
42
  drizzled::execute_string_t to_execute;
42
43
 
43
44
  bool parseVariable(void);
44
45
 
45
46
  bool runStatement(plugin::NullClient *client, const std::string &arg);
46
47
 
 
48
  bool execute_shell();
47
49
public:
48
 
  Execute(Session *in_session, drizzled::execute_string_t, bool is_quiet_arg, bool is_concurrent);
 
50
  Execute(Session *in_session, drizzled::execute_string_t, bool is_quiet_arg, bool is_concurrent, bool should_wait);
49
51
 
50
52
 
51
53
  bool execute();