~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/show.h

  • Committer: Brian Aker
  • Date: 2011-01-06 05:17:09 UTC
  • Revision ID: brian@tangent.org-20110106051709-oa0se8ur02uc6i9o
Added native functions into the function table.

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 */