~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/identifier/table.h

  • Committer: Mark Atwood
  • Date: 2012-01-04 16:59:32 UTC
  • mfrom: (2478.2.3 real-key-use-catalog)
  • Revision ID: me@mark.atwood.name-20120104165932-cm0xqs4by0u3p4cy
mergeĀ lp:~stewart/drizzle/key-use-catalog

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
      return key_buffer;
82
82
    }
83
83
 
84
 
    void set(size_t resize_arg, const std::string &a, const std::string &b);
 
84
    void set(size_t resize_arg, const std::string &a, const std::string &b, const std::string &c);
85
85
 
86
86
    friend bool operator==(const Key &left, const Key &right)
87
87
    {
123
123
 
124
124
  size_t getKeySize() const
125
125
  {
126
 
    return getSchemaName().size() + getTableName().size() + 2;
 
126
    return getCatalogName().size() + getSchemaName().size() + getTableName().size() + 3;
127
127
  }
128
128
 
129
129
public: