~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/kill.h

  • Committer: Monty Taylor
  • Date: 2010-12-24 02:13:05 UTC
  • mto: This revision was merged to the branch mainline in revision 2038.
  • Revision ID: mordred@inaugust.com-20101224021305-e3slv1cyjczqorij
Changed the bzrignore file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
class Kill : public Statement
34
34
{
35
35
public:
36
 
  Kill(Session *in_session, Item *item, bool is_query_kill);
 
36
  Kill(Session *in_session)
 
37
    :
 
38
      Statement(in_session)
 
39
  {}
37
40
 
38
41
  bool execute();
39
 
 
40
 
private:
41
 
  bool kill(session_id_t id, bool only_kill_query);
42
42
};
43
43
 
44
44
} /* namespace statement */