~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzleimport.cc

  • Committer: Brian Aker
  • Date: 2008-09-04 18:16:51 UTC
  • Revision ID: brian@tangent.org-20080904181651-kydoxckk145z99b8
strend remove

Show diffs side-by-side

added added

removed removed

Lines of Context:
292
292
  sprintf(sql_statement, "LOAD DATA %s %s INFILE '%s'",
293
293
    opt_low_priority ? "LOW_PRIORITY" : "",
294
294
    opt_local_file ? "LOCAL" : "", hard_path);
295
 
  end= strend(sql_statement);
 
295
  end= strchr(sql_statement, '\0');
296
296
  if (opt_replace)
297
297
    end= stpcpy(end, " REPLACE");
298
298
  if (ignore)