~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/csv/ha_tina.cc

  • Committer: Brian Aker
  • Date: 2008-07-13 01:28:21 UTC
  • Revision ID: brian@tangent.org-20080713012821-rzjl550us0n27aoi
Code cleanup. Mainly dead stuff :)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1164
1164
}
1165
1165
 
1166
1166
/*
1167
 
  Grab bag of flags that are sent to the able handler every so often.
1168
 
  HA_EXTRA_RESET and HA_EXTRA_RESET_STATE are the most frequently called.
1169
 
  You are not required to implement any of these.
1170
 
*/
1171
 
int ha_tina::extra(enum ha_extra_function operation)
1172
 
{
1173
 
  DBUG_ENTER("ha_tina::extra");
1174
 
 if (operation == HA_EXTRA_MARK_AS_LOG_TABLE)
1175
 
 {
1176
 
   pthread_mutex_lock(&share->mutex);
1177
 
   share->is_log_table= TRUE;
1178
 
   pthread_mutex_unlock(&share->mutex);
1179
 
 }
1180
 
  DBUG_RETURN(0);
1181
 
}
1182
 
 
1183
 
/*
1184
1167
  Set end_pos to the last valid byte of continuous area, closest
1185
1168
  to the given "hole", stored in the buffer. "Valid" here means,
1186
1169
  not listed in the chain of deleted records ("holes").