~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to drizzled/statement/execute.h

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-12-09 06:02:39 UTC
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: james.westby@ubuntu.com-20101209060239-t0ujftvcvd558yno
Tags: upstream-2010.12.05
ImportĀ upstreamĀ versionĀ 2010.12.05

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();