~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_proto_write.cc

  • Committer: Brian Aker
  • Date: 2010-02-24 00:18:38 UTC
  • mto: (1273.13.98 build)
  • mto: This revision was merged to the branch mainline in revision 1309.
  • Revision ID: brian@gaz-20100224001838-y1o1rpeor2g1hnoo
Remove stray std::cerr

Show diffs side-by-side

added added

removed removed

Lines of Context:
549
549
 
550
550
  int err= 0;
551
551
 
552
 
  std::cerr << " Got into here! \n";
553
552
  plugin::StorageEngine* engine= plugin::StorageEngine::findByName(*session,
554
553
                                                                   table_proto->engine().name());
555
554
  if (engine->check_flag(HTON_BIT_HAS_DATA_DICTIONARY) == false)
562
561
    else
563
562
      my_error(ER_CANT_CREATE_TABLE, MYF(0), identifier.getTableName(), err);
564
563
 
565
 
    std::cerr << "Error in basic proto write \n";
566
 
 
567
564
    goto err_handler;
568
565
  }
569
566
 
571
568
                                         identifier,
572
569
                                         false, *table_proto))
573
570
  {
574
 
    std::cerr << "Error in createTable() \n";
575
571
    goto err_handler;
576
572
  }
577
573
 
578
 
  std::cerr << "Success should have happened \n";
579
574
  return 0;
580
575
 
581
576
err_handler: