~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/cursor.cc

Merge from trunk.
Renamed pbms source code files to be more consistent.

Show diffs side-by-side

added added

removed removed

Lines of Context:
182
182
  return (table->getShare()->db_type()->check_flag(HTON_BIT_DOES_TRANSACTIONS));
183
183
}
184
184
 
185
 
void Cursor::ha_statistic_increment(ulong system_status_var::*offset) const
 
185
void Cursor::ha_statistic_increment(uint64_t system_status_var::*offset) const
186
186
{
187
187
  status_var_increment(table->in_use->status_var.*offset);
188
188
}
1282
1282
  TransactionServices &transaction_services= TransactionServices::singleton();
1283
1283
  Session *const session= table->in_use;
1284
1284
 
1285
 
  if (table->getShare()->tmp_table || not transaction_services.shouldConstructMessages())
 
1285
  if (table->getShare()->getType() || not transaction_services.shouldConstructMessages())
1286
1286
    return false;
1287
1287
 
1288
1288
  bool result= false;