~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzletest.cc

  • Committer: Brian Aker
  • Date: 2009-03-07 17:09:37 UTC
  • mto: This revision was merged to the branch mainline in revision 920.
  • Revision ID: brian@tangent.org-20090307170937-tnd4eq9tlkvfpddh
Remove client code around LOAD DATE LOCAL

Show diffs side-by-side

added added

removed removed

Lines of Context:
3821
3821
    die("Failed on drizzleclient_create()");
3822
3822
  if (opt_compress || con_compress)
3823
3823
    drizzleclient_options(&con_slot->drizzle, DRIZZLE_OPT_COMPRESS, NULL);
3824
 
  drizzleclient_options(&con_slot->drizzle, DRIZZLE_OPT_LOCAL_INFILE, 0);
 
3824
  
3825
3825
 
3826
3826
  /* Use default db name */
3827
3827
  if (ds_database.length() == 0)
5555
5555
    die("Failed in drizzleclient_create()");
5556
5556
  if (opt_compress)
5557
5557
    drizzleclient_options(&cur_con->drizzle,DRIZZLE_OPT_COMPRESS,NULL);
5558
 
  drizzleclient_options(&cur_con->drizzle, DRIZZLE_OPT_LOCAL_INFILE, 0);
5559
5558
 
5560
5559
  if (!(cur_con->name = strdup("default")))
5561
5560
    die("Out of memory");