~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to unittests/table_identifier.cc

  • Committer: Stewart Smith
  • Date: 2012-01-04 09:51:04 UTC
  • mto: This revision was merged to the branch mainline in revision 2484.
  • Revision ID: stewart@flamingspork.com-20120104095104-73g0puzzewxbs8jy
fix table_identifier unittest for having CATALOG in table key

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
 
66
66
  BOOST_REQUIRE_EQUAL(key.size(), 13);
67
67
  int i=0;
68
 
  BOOST_REQUIRE_EQUAL(key.vector()[i++], 'l');
69
 
  BOOST_REQUIRE_EQUAL(key.vector()[i++], 'o');
70
 
  BOOST_REQUIRE_EQUAL(key.vector()[i++], 'c');
71
 
  BOOST_REQUIRE_EQUAL(key.vector()[i++], 'a');
72
 
  BOOST_REQUIRE_EQUAL(key.vector()[i++], 'l');
 
68
  BOOST_REQUIRE_EQUAL(key.vector()[i++], 'L');
 
69
  BOOST_REQUIRE_EQUAL(key.vector()[i++], 'O');
 
70
  BOOST_REQUIRE_EQUAL(key.vector()[i++], 'C');
 
71
  BOOST_REQUIRE_EQUAL(key.vector()[i++], 'A');
 
72
  BOOST_REQUIRE_EQUAL(key.vector()[i++], 'L');
73
73
  BOOST_REQUIRE_EQUAL(key.vector()[i++], 0);
74
74
  BOOST_REQUIRE_EQUAL(key.vector()[i++], 't');
75
75
  BOOST_REQUIRE_EQUAL(key.vector()[i++], 'e');