~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_list.h

  • Committer: Stewart Smith
  • Date: 2011-02-10 01:03:48 UTC
  • mto: (2154.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2155.
  • Revision ID: stewart@flamingspork.com-20110210010348-5l0zh0akjahvx3vi
fix Session::tx_isolation to be getTxIsolation to follow coding style, but look weird

Show diffs side-by-side

added added

removed removed

Lines of Context:
150
150
  const char *alias;
151
151
 
152
152
private:
153
 
  const char *table_name;
 
153
  char *table_name;
154
154
 
155
155
public:
156
156
  const char *getTableName()
158
158
    return table_name;
159
159
  }
160
160
 
161
 
  void setTableName(const char *arg)
 
161
  char **getTableNamePtr()
 
162
  {
 
163
    return &table_name;
 
164
  }
 
165
 
 
166
  void setTableName(char *arg)
162
167
  {
163
168
    table_name= arg;
164
169
  }