~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_list.h

  • Committer: Olaf van der Spek
  • Date: 2011-07-05 16:20:32 UTC
  • mto: This revision was merged to the branch mainline in revision 2384.
  • Revision ID: olafvdspek@gmail.com-20110705162032-sn2tnssow7xulzvt
Add const

Show diffs side-by-side

added added

removed removed

Lines of Context:
115
115
  const char *db;
116
116
 
117
117
public:
118
 
  const char *getSchemaName()
 
118
  const char *getSchemaName() const
119
119
  {
120
120
    return db;
121
121
  }
137
137
  const char *table_name;
138
138
 
139
139
public:
140
 
  const char *getTableName()
 
140
  const char *getTableName() const
141
141
  {
142
142
    return table_name;
143
143
  }