~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/tables.h

  • Committer: Brian Aker
  • Date: 2010-02-18 17:24:08 UTC
  • mto: (1273.19.13 fix_is)
  • mto: This revision was merged to the branch mainline in revision 1304.
  • Revision ID: brian@gaz-20100218172408-l224655n3lf4h6nd
Revert OSX fix, requiring more cast.

Show diffs side-by-side

added added

removed removed

Lines of Context:
150
150
      push(getTableProto().engine().name());
151
151
 
152
152
      /* Version */
153
 
      push(0);
 
153
      push(static_cast<int64_t>(0));
154
154
 
155
155
      /* Row_format */
156
156
      pushRow(getTableProto().options().row_type());
157
157
 
158
158
      /* Rows */
159
 
      push(0);
 
159
      push(static_cast<int64_t>(0));
160
160
 
161
161
      /* Avg_row_length */
162
 
      push(0);
 
162
      push(static_cast<int64_t>(0));
163
163
 
164
164
      /* Data_length */
165
 
      push(0);
 
165
      push(static_cast<int64_t>(0));
166
166
 
167
167
      /* Max_data_length */
168
 
      push(0);
 
168
      push(static_cast<int64_t>(0));
169
169
 
170
170
      /* Index_length */
171
 
      push(0);
 
171
      push(static_cast<int64_t>(0));
172
172
 
173
173
      /* Data_free */
174
 
      push(0);
 
174
      push(static_cast<int64_t>(0));
175
175
 
176
176
      /* Auto_increment */
177
 
      push(0);
 
177
      push(static_cast<int64_t>(0));
178
178
 
179
179
      /* Create_time */
180
 
      push(0);
 
180
      push(static_cast<int64_t>(0));
181
181
 
182
182
      /* Update_time */
183
 
      push(0);
 
183
      push(static_cast<int64_t>(0));
184
184
 
185
185
      /* Check_time */
186
 
      push(0);
 
186
      push(static_cast<int64_t>(0));
187
187
 
188
188
      /* Collation */
189
189
      push(getTableProto().options().collation());
190
190
 
191
191
      /* Checksum */
192
 
      push(0);
 
192
      push(static_cast<int64_t>(0));
193
193
 
194
194
      /* Create_options */
195
195
      push("");
196
196
 
197
197
      /* Comment */
198
 
      push(getTableProto().options().comment());
 
198
      push("");
199
199
    }
200
200
 
201
201
  public: