~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/str/load_file.cc

  • Committer: Olaf van der Spek
  • Date: 2011-06-22 22:23:29 UTC
  • mto: This revision was merged to the branch mainline in revision 2348.
  • Revision ID: olafvdspek@gmail.com-20110622222329-nnn26zfomy4tsxak
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
  if (!(file_name= args[0]->val_str(str)))
50
50
  {
51
51
    null_value = 1;
52
 
    return(0);
 
52
    return 0;
53
53
  }
54
54
 
55
55
  fs::path target_path(fs::system_complete(getDataHomeCatalog()));
121
121
 
122
122
err:
123
123
  null_value = 1;
124
 
  return(0);
 
124
  return 0;
125
125
}
126
126
 
127
127