~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/load.h

Merged up with latest plugin-slot-reorg.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
public:
36
36
  Load(Session *in_session)
37
37
    :
38
 
      Statement(in_session, SQLCOM_LOAD)
 
38
      Statement(in_session)
39
39
  {}
40
40
 
41
41
  bool execute();
 
42
 
 
43
  /*
 
44
    Pointers to part of LOAD DATA statement that should be rewritten
 
45
    during replication ("LOCAL 'filename' REPLACE INTO" part).
 
46
  */
 
47
  const char *fname_start;
 
48
  const char *fname_end;
42
49
};
43
50
 
44
51
} /* end namespace statement */