~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/select_insert.h

  • Committer: Olaf van der Spek
  • Date: 2011-07-04 19:11:47 UTC
  • mto: This revision was merged to the branch mainline in revision 2367.
  • Revision ID: olafvdspek@gmail.com-20110704191147-s99ojek811zi1fzj
Remove unused Name_resolution_context::error_reporter

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 */
19
19
 
20
20
 
21
 
#ifndef DRIZZLED_SELECT_INSERT_H
22
 
#define DRIZZLED_SELECT_INSERT_H
23
 
 
24
 
namespace drizzled
 
21
#pragma once
 
22
 
 
23
#include <drizzled/copy_info.h>
 
24
#include <drizzled/select_result_interceptor.h>
 
25
 
 
26
namespace drizzled {
 
27
 
 
28
class select_insert :public select_result_interceptor 
25
29
{
26
 
 
27
 
class select_insert :public select_result_interceptor {
28
 
 public:
 
30
public:
29
31
  TableList *table_list;
30
32
  Table *table;
31
33
  List<Item> *fields;
51
53
 
52
54
} /* namespace drizzled */
53
55
 
54
 
#endif /* DRIZZLED_SELECT_INSERT_H */