~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/create_table/select.h

  • Committer: Olaf van der Spek
  • Date: 2011-04-05 12:26:58 UTC
  • mto: (2278.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2272.
  • Revision ID: olafvdspek@gmail.com-20110405122658-xxrvmobwwwwf3oct
Refactor Open_tables_state

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#ifndef DRIZZLED_STATEMENT_CREATE_TABLE_SELECT_H
22
 
#define DRIZZLED_STATEMENT_CREATE_TABLE_SELECT_H
 
21
#pragma once
23
22
 
24
23
#include <drizzled/statement/create_table.h>
25
24
#include <drizzled/foreign_key.h>
26
25
 
27
 
namespace drizzled
28
 
{
29
 
class Session;
30
 
 
31
 
namespace statement
32
 
{
33
 
 
34
 
namespace create
35
 
{
36
 
 
37
 
namespace table
38
 
{
 
26
namespace drizzled {
 
27
namespace statement {
 
28
namespace create {
 
29
namespace table {
39
30
 
40
31
class Select : public CreateTable
41
32
{
45
36
  {
46
37
  }
47
38
 
48
 
  bool executeInner(identifier::Table::const_reference);
 
39
  bool executeInner(const identifier::Table&);
49
40
};
50
41
 
51
42
} /* namespace table */
56
47
 
57
48
} /* namespace drizzled */
58
49
 
59
 
#endif /* DRIZZLED_STATEMENT_CREATE_TABLE_SELECT_H */