~skinny.moey/drizzle/innodb-replication

« back to all changes in this revision

Viewing changes to drizzled/identifier/schema.h

  • Committer: Brian Aker
  • Date: 2010-11-08 22:35:57 UTC
  • mfrom: (1802.1.114 trunk)
  • Revision ID: brian@tangent.org-20101108223557-w3xzwp9hjjtjhtc1
MergeĀ inĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
 
50
50
namespace drizzled {
51
51
 
52
 
static std::string catalog("");
 
52
static std::string catalog("local");
53
53
 
54
54
class SchemaIdentifier
55
55
{
56
56
  std::string db;
57
57
  std::string db_path;
 
58
  std::string catalog;
58
59
 
59
60
 
60
61
  // @note this should be changed to protected once Session contains an
92
93
                                  SchemaIdentifier &identifier)
93
94
  {
94
95
    output << "SchemaIdentifier:(";
 
96
    output <<  identifier.catalog;
 
97
    output << ", ";
95
98
    output <<  identifier.db;
96
99
    output << ", ";
97
100
    output << identifier.getPath();