~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/show.h

  • Committer: Monty Taylor
  • Date: 2010-12-26 03:15:44 UTC
  • mto: This revision was merged to the branch mainline in revision 2038.
  • Revision ID: mordred@inaugust.com-20101226031544-1cf3raipu53fnmyj
Through page.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
  bool if_exists;
39
39
 
40
40
public:
41
 
  Show(Session *in_session);
 
41
  Show(Session *in_session)
 
42
    :
 
43
      Select(in_session),
 
44
      if_exists(false)
 
45
  {}
42
46
 
43
47
  void setShowPredicate(const std::string &schema_arg, const std::string &table_arg)
44
48
  {
72
76
  }
73
77
 
74
78
  bool execute();
75
 
 
76
 
  bool isShow() { return true; }
77
79
};
78
80
 
79
81
} /* namespace statement */