~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_load.cc

  • Committer: Brian Aker
  • Date: 2009-02-05 07:50:45 UTC
  • mfrom: (831.1.3 insert)
  • Revision ID: brian@tangent.org-20090205075045-2jumebo4fa85oc4m
Merge me (aka brian)

Show diffs side-by-side

added added

removed removed

Lines of Context:
92
92
  SYNOPSYS
93
93
    mysql_load()
94
94
      session - current thread
95
 
      ex  - sql_exchange object representing source file and its parsing rules
 
95
      ex  - file_exchange object representing source file and its parsing rules
96
96
      table_list  - list of tables to which we are loading data
97
97
      fields_vars - list of fields and variables to which we read
98
98
                    data from file
107
107
    true - error / false - success
108
108
*/
109
109
 
110
 
int mysql_load(Session *session,sql_exchange *ex,TableList *table_list,
 
110
int mysql_load(Session *session,file_exchange *ex,TableList *table_list,
111
111
                List<Item> &fields_vars, List<Item> &set_fields,
112
112
                List<Item> &set_values,
113
113
                enum enum_duplicates handle_duplicates, bool ignore,