~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/identifier/table.cc

  • Committer: Brian Aker
  • Date: 2011-02-03 20:32:09 UTC
  • mfrom: (2139.1.4 drizzle-build)
  • Revision ID: brian@tangent.org-20110203203209-r1t4knmy15x5n1w2
Rollup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
398
398
  return b.getHashValue();
399
399
}
400
400
 
 
401
 
 
402
std::ostream& operator<<(std::ostream& output, Table::const_reference identifier)
 
403
{
 
404
  output << "Table:(";
 
405
  output <<  identifier.getSchemaName();
 
406
  output << ", ";
 
407
  output << identifier.getTableName();
 
408
  output << ", ";
 
409
  output << message::type(identifier.getType());
 
410
  output << ", ";
 
411
  output << identifier.getPath();
 
412
  output << ", ";
 
413
  output << identifier.getHashValue();
 
414
  output << ")";
 
415
 
 
416
  return output;  // for multiple << operators.
 
417
}
 
418
 
401
419
} /* namespace identifier */
402
420
} /* namespace drizzled */