~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/select_create.h

  • Committer: Monty Taylor
  • Date: 2010-10-21 23:10:12 UTC
  • mto: (1879.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1880.
  • Revision ID: mordred@inaugust.com-20101021231012-uhsebiqo23xi0ygy
Updated AUTHORS list with everyone from bzr logs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2008 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
20
20
#ifndef DRIZZLED_SELECT_CREATE_H
21
21
#define DRIZZLED_SELECT_CREATE_H
22
22
 
23
 
#include <drizzled/select_insert.h>
24
 
 
25
23
namespace drizzled
26
24
{
27
25
 
28
26
class select_create: public select_insert {
29
 
  Order *group;
 
27
  order_st *group;
30
28
  TableList *create_table;
31
29
  bool is_if_not_exists;
32
30
  HA_CREATE_INFO *create_info;
38
36
  DrizzleLock *m_lock;
39
37
  /* m_lock or session->extra_lock */
40
38
  DrizzleLock **m_plock;
41
 
  identifier::Table::const_reference identifier;
 
39
  TableIdentifier &identifier;
42
40
 
43
41
public:
44
42
  select_create (TableList *table_arg,
48
46
                 AlterInfo *alter_info_arg,
49
47
                 List<Item> &select_fields,enum_duplicates duplic, bool ignore,
50
48
                 TableList *select_tables_arg,
51
 
                 identifier::Table::const_reference identifier_arg)
 
49
                 TableIdentifier &identifier_arg)
52
50
    :select_insert (NULL, NULL, &select_fields, 0, 0, duplic, ignore),
53
51
    create_table(table_arg),
54
52
    is_if_not_exists(is_if_not_exists_arg),
62
60
  int prepare(List<Item> &list, Select_Lex_Unit *u);
63
61
 
64
62
  void store_values(List<Item> &values);
65
 
  void send_error(drizzled::error_t errcode,const char *err);
 
63
  void send_error(uint32_t errcode,const char *err);
66
64
  bool send_eof();
67
65
  void abort();
68
66
  virtual bool can_rollback_data() { return true; }
69
67
 
70
68
  // Needed for access from local class MY_HOOKS in prepare(), since session is proteted.
71
69
  const Session *get_session(void) { return session; }
72
 
  const HA_CREATE_INFO *get_create_info() { return create_info; }
 
70
  const HA_CREATE_INFO *get_create_info() { return create_info; };
73
71
  int prepare2(void) { return 0; }
74
72
};
75
73