~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/innobase/handler/ha_innodb.h

  • Committer: Grant Limberg
  • Date: 2008-08-12 21:13:01 UTC
  • mto: (322.1.1 codestyle)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: grant@glsoftware.net-20080812211301-ym3wsowelkgp16s2
renamed all instances of MYSQL_ to DRIZZLE_

Show diffs side-by-side

added added

removed removed

Lines of Context:
246
246
#endif
247
247
 
248
248
extern "C" {
249
 
struct charset_info_st *thd_charset(MYSQL_THD thd);
250
 
char **thd_query(MYSQL_THD thd);
 
249
struct charset_info_st *thd_charset(DRIZZLE_THD thd);
 
250
char **thd_query(DRIZZLE_THD thd);
251
251
 
252
252
/** Get the file name of the MySQL binlog.
253
253
 * @return the name of the binlog file
265
265
  @retval 0 the user thread is not a replication slave thread
266
266
  @retval 1 the user thread is a replication slave thread
267
267
*/
268
 
int thd_slave_thread(const MYSQL_THD thd);
 
268
int thd_slave_thread(const DRIZZLE_THD thd);
269
269
 
270
270
/**
271
271
  Check if a user thread is running a non-transactional update
273
273
  @retval 0 the user thread is not running a non-transactional update
274
274
  @retval 1 the user thread is running a non-transactional update
275
275
*/
276
 
int thd_non_transactional_update(const MYSQL_THD thd);
 
276
int thd_non_transactional_update(const DRIZZLE_THD thd);
277
277
 
278
278
/**
279
279
  Get the user thread's binary logging format
280
280
  @param thd  user thread
281
281
  @return Value to be used as index into the binlog_format_names array
282
282
*/
283
 
int thd_binlog_format(const MYSQL_THD thd);
 
283
int thd_binlog_format(const DRIZZLE_THD thd);
284
284
 
285
285
/**
286
286
  Mark transaction to rollback and mark error as fatal to a sub-statement.
287
287
  @param  thd   Thread handle
288
288
  @param  all   TRUE <=> rollback main transaction.
289
289
*/
290
 
void thd_mark_transaction_to_rollback(MYSQL_THD thd, bool all);
 
290
void thd_mark_transaction_to_rollback(DRIZZLE_THD thd, bool all);
291
291
}