~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/show.h

  • Committer: Stewart Smith
  • Date: 2011-02-08 08:29:55 UTC
  • mto: (2154.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2155.
  • Revision ID: stewart@flamingspork.com-20110208082955-wlyzb4dnsj89laxl
switch default Statement::isTransactional() to false, have explicit overriding of true where needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
72
72
  }
73
73
 
74
74
  bool execute();
75
 
  bool isTransactional()
76
 
  {
77
 
    return false;
78
 
  }
79
75
 
80
76
  bool isShow() { return true; }
81
77
};