~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/identifier/table.cc

  • Committer: Brian Aker
  • Date: 2011-02-01 20:31:20 UTC
  • mfrom: (2133.1.4 drizzle-build)
  • Revision ID: brian@tangent.org-20110201203120-vmp2abdbjjaua218
Merge in all of the error cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
217
217
  conversion_error= util::tablename_to_filename(in_db, in_path);
218
218
  if (conversion_error)
219
219
  {
220
 
    errmsg_printf(ERRMSG_LVL_ERROR,
 
220
    errmsg_printf(error::ERROR,
221
221
                  _("Schema name cannot be encoded and fit within filesystem "
222
222
                    "name length restrictions."));
223
223
    return 0;
234
234
    conversion_error= util::tablename_to_filename(in_table_name, in_path);
235
235
    if (conversion_error)
236
236
    {
237
 
      errmsg_printf(ERRMSG_LVL_ERROR,
 
237
      errmsg_printf(error::ERROR,
238
238
                    _("Table name cannot be encoded and fit within filesystem "
239
239
                      "name length restrictions."));
240
240
      return 0;