~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/blackhole/ha_blackhole.cc

  • Committer: Brian Aker
  • Date: 2010-02-09 21:18:30 UTC
  • mfrom: (1273.2.42)
  • Revision ID: brian@gaz-20100209211830-7vf91n0yasi0r28y
Merge Stewart.

Show diffs side-by-side

added added

removed removed

Lines of Context:
259
259
  {
260
260
    close(fd);
261
261
    delete input;
 
262
    if (! table_proto->IsInitialized())
 
263
    {
 
264
      my_error(ER_CORRUPT_TABLE_DEFINITION, MYF(0),
 
265
               table_proto->InitializationErrorString().c_str());
 
266
      return ER_CORRUPT_TABLE_DEFINITION;
 
267
    }
 
268
 
262
269
    return HA_ERR_CRASHED_ON_USAGE;
263
270
  }
264
271