20
20
#ifndef DRIZZLED_SELECT_CREATE_H
21
21
#define DRIZZLED_SELECT_CREATE_H
26
23
class select_create: public select_insert {
30
27
HA_CREATE_INFO *create_info;
32
29
TableList *select_tables;
35
32
/* lock data for tmp table */
37
34
/* m_lock or session->extra_lock */
42
37
select_create (TableList *table_arg,
43
38
bool is_if_not_exists_arg,
44
39
HA_CREATE_INFO *create_info_par,
46
41
AlterInfo *alter_info_arg,
47
42
List<Item> &select_fields,enum_duplicates duplic, bool ignore,
50
44
:select_insert (NULL, NULL, &select_fields, 0, 0, duplic, ignore),
52
46
is_if_not_exists(is_if_not_exists_arg),