~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.cc

  • Committer: Brian Aker
  • Date: 2010-03-26 01:22:04 UTC
  • mto: This revision was merged to the branch mainline in revision 1411.
  • Revision ID: brian@gaz-20100326012204-chqh9lcnme5hpqtb
Fixes failure related to Heap's hack on deletion. Also cleans up error
message (I made one more specific).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1599
1599
    return true;
1600
1600
  }
1601
1601
 
 
1602
  if (not plugin::StorageEngine::doesSchemaExist(identifier))
 
1603
  {
 
1604
    my_error(ER_BAD_DB_ERROR, MYF(0), identifier.getSchemaName().c_str());
 
1605
    return true;
 
1606
  }
 
1607
 
1602
1608
  return false;
1603
1609
}
1604
1610