~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/show.cc

  • Committer: Brian Aker
  • Date: 2011-01-25 07:24:41 UTC
  • mfrom: (2104.3.14 alter-table)
  • Revision ID: brian@tangent.org-20110125072441-gf9f14lkxjhvvku9
MergeĀ inĀ alter/parser

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
namespace drizzled
26
26
{
 
27
namespace statement
 
28
{
 
29
 
 
30
Show::Show(Session *in_session) :
 
31
  Select(in_session),
 
32
  if_exists(false)
 
33
  {
 
34
  }
 
35
 
 
36
} /* namespace statement */
27
37
 
28
38
bool statement::Show::execute()
29
39
{