~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/select_insert.h

Added the testsuite location finding code to support in-plugin-dir test suites.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef DRIZZLED_SELECT_INSERT_H
22
22
#define DRIZZLED_SELECT_INSERT_H
23
23
 
24
 
namespace drizzled
25
 
{
26
 
 
27
24
class select_insert :public select_result_interceptor {
28
25
 public:
29
26
  TableList *table_list;
30
27
  Table *table;
31
28
  List<Item> *fields;
32
29
  uint64_t autoinc_value_of_last_inserted_row; // autogenerated or not
33
 
  CopyInfo info;
 
30
  COPY_INFO info;
34
31
  bool insert_into_view;
35
32
  select_insert(TableList *table_list_par,
36
33
                Table *table_par, List<Item> *fields_par,
49
46
  void cleanup();
50
47
};
51
48
 
52
 
} /* namespace drizzled */
53
 
 
54
49
#endif /* DRIZZLED_SELECT_INSERT_H */