2005-10-27 09:29:40 +02:00
|
|
|
/******************************************************
|
|
|
|
The transaction
|
|
|
|
|
|
|
|
(c) 1996 Innobase Oy
|
|
|
|
|
|
|
|
Created 3/26/1996 Heikki Tuuri
|
|
|
|
*******************************************************/
|
|
|
|
|
|
|
|
#ifndef trx0trx_h
|
|
|
|
#define trx0trx_h
|
|
|
|
|
|
|
|
#include "univ.i"
|
|
|
|
#include "trx0types.h"
|
|
|
|
#include "lock0types.h"
|
|
|
|
#include "usr0types.h"
|
|
|
|
#include "que0types.h"
|
|
|
|
#include "mem0mem.h"
|
|
|
|
#include "read0types.h"
|
|
|
|
#include "dict0types.h"
|
|
|
|
#include "trx0xa.h"
|
|
|
|
|
2007-06-21 14:02:29 +02:00
|
|
|
/* Dummy session used currently in MySQL interface */
|
|
|
|
extern sess_t* trx_dummy_sess;
|
|
|
|
|
|
|
|
/* Number of transactions currently allocated for MySQL: protected by
|
|
|
|
the kernel mutex */
|
2005-10-27 09:29:40 +02:00
|
|
|
extern ulint trx_n_mysql_transactions;
|
|
|
|
|
|
|
|
/*****************************************************************
|
|
|
|
Resets the new record lock info in a transaction struct. */
|
|
|
|
UNIV_INLINE
|
|
|
|
void
|
|
|
|
trx_reset_new_rec_lock_info(
|
|
|
|
/*========================*/
|
|
|
|
trx_t* trx); /* in: transaction struct */
|
|
|
|
/*****************************************************************
|
|
|
|
Registers that we have set a new record lock on an index. We only have space
|
|
|
|
to store 2 indexes! If this is called to store more than 2 indexes after
|
|
|
|
trx_reset_new_rec_lock_info(), then this function does nothing. */
|
|
|
|
UNIV_INLINE
|
|
|
|
void
|
|
|
|
trx_register_new_rec_lock(
|
|
|
|
/*======================*/
|
|
|
|
trx_t* trx, /* in: transaction struct */
|
|
|
|
dict_index_t* index); /* in: trx sets a new record lock on this
|
|
|
|
index */
|
|
|
|
/*****************************************************************
|
|
|
|
Checks if trx has set a new record lock on an index. */
|
|
|
|
UNIV_INLINE
|
|
|
|
ibool
|
|
|
|
trx_new_rec_locks_contain(
|
|
|
|
/*======================*/
|
|
|
|
/* out: TRUE if trx has set a new record lock
|
|
|
|
on index */
|
|
|
|
trx_t* trx, /* in: transaction struct */
|
|
|
|
dict_index_t* index); /* in: index */
|
|
|
|
/************************************************************************
|
|
|
|
Releases the search latch if trx has reserved it. */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2005-10-27 09:29:40 +02:00
|
|
|
void
|
|
|
|
trx_search_latch_release_if_reserved(
|
|
|
|
/*=================================*/
|
2006-02-23 20:25:29 +01:00
|
|
|
trx_t* trx); /* in: transaction */
|
2005-10-27 09:29:40 +02:00
|
|
|
/**********************************************************************
|
|
|
|
Set detailed error message for the transaction. */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2005-10-27 09:29:40 +02:00
|
|
|
void
|
|
|
|
trx_set_detailed_error(
|
|
|
|
/*===================*/
|
|
|
|
trx_t* trx, /* in: transaction struct */
|
|
|
|
const char* msg); /* in: detailed error message */
|
|
|
|
/*****************************************************************
|
|
|
|
Set detailed error message for the transaction from a file. Note that the
|
|
|
|
file is rewinded before reading from it. */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2005-10-27 09:29:40 +02:00
|
|
|
void
|
|
|
|
trx_set_detailed_error_from_file(
|
|
|
|
/*=============================*/
|
|
|
|
trx_t* trx, /* in: transaction struct */
|
|
|
|
FILE* file); /* in: file to read message from */
|
|
|
|
/********************************************************************
|
|
|
|
Retrieves the error_info field from a trx. */
|
2007-08-15 08:53:34 +02:00
|
|
|
UNIV_INLINE
|
|
|
|
const dict_index_t*
|
2005-10-27 09:29:40 +02:00
|
|
|
trx_get_error_info(
|
|
|
|
/*===============*/
|
2007-08-15 08:53:34 +02:00
|
|
|
/* out: the error info */
|
|
|
|
const trx_t* trx); /* in: trx object */
|
2005-10-27 09:29:40 +02:00
|
|
|
/********************************************************************
|
|
|
|
Creates and initializes a transaction object. */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2005-10-27 09:29:40 +02:00
|
|
|
trx_t*
|
|
|
|
trx_create(
|
|
|
|
/*=======*/
|
|
|
|
/* out, own: the transaction */
|
2007-06-21 14:02:29 +02:00
|
|
|
sess_t* sess) /* in: session */
|
|
|
|
__attribute__((nonnull));
|
2005-10-27 09:29:40 +02:00
|
|
|
/************************************************************************
|
|
|
|
Creates a transaction object for MySQL. */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2005-10-27 09:29:40 +02:00
|
|
|
trx_t*
|
|
|
|
trx_allocate_for_mysql(void);
|
|
|
|
/*========================*/
|
|
|
|
/* out, own: transaction object */
|
|
|
|
/************************************************************************
|
|
|
|
Creates a transaction object for background operations by the master thread. */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2005-10-27 09:29:40 +02:00
|
|
|
trx_t*
|
|
|
|
trx_allocate_for_background(void);
|
|
|
|
/*=============================*/
|
|
|
|
/* out, own: transaction object */
|
|
|
|
/************************************************************************
|
|
|
|
Frees a transaction object. */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2005-10-27 09:29:40 +02:00
|
|
|
void
|
|
|
|
trx_free(
|
|
|
|
/*=====*/
|
|
|
|
trx_t* trx); /* in, own: trx object */
|
|
|
|
/************************************************************************
|
|
|
|
Frees a transaction object for MySQL. */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2005-10-27 09:29:40 +02:00
|
|
|
void
|
|
|
|
trx_free_for_mysql(
|
|
|
|
/*===============*/
|
|
|
|
trx_t* trx); /* in, own: trx object */
|
|
|
|
/************************************************************************
|
|
|
|
Frees a transaction object of a background operation of the master thread. */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2005-10-27 09:29:40 +02:00
|
|
|
void
|
|
|
|
trx_free_for_background(
|
|
|
|
/*====================*/
|
|
|
|
trx_t* trx); /* in, own: trx object */
|
|
|
|
/********************************************************************
|
|
|
|
Creates trx objects for transactions and initializes the trx list of
|
|
|
|
trx_sys at database start. Rollback segment and undo log lists must
|
|
|
|
already exist when this function is called, because the lists of
|
|
|
|
transactions to be rolled back or cleaned up are built based on the
|
|
|
|
undo log lists. */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2005-10-27 09:29:40 +02:00
|
|
|
void
|
|
|
|
trx_lists_init_at_db_start(void);
|
|
|
|
/*============================*/
|
|
|
|
/********************************************************************
|
|
|
|
Starts a new transaction. */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2005-10-27 09:29:40 +02:00
|
|
|
ibool
|
|
|
|
trx_start(
|
|
|
|
/*======*/
|
|
|
|
/* out: TRUE if success, FALSE if the rollback
|
|
|
|
segment could not support this many transactions */
|
2006-02-23 20:25:29 +01:00
|
|
|
trx_t* trx, /* in: transaction */
|
2005-10-27 09:29:40 +02:00
|
|
|
ulint rseg_id);/* in: rollback segment id; if ULINT_UNDEFINED
|
|
|
|
is passed, the system chooses the rollback segment
|
|
|
|
automatically in a round-robin fashion */
|
|
|
|
/********************************************************************
|
|
|
|
Starts a new transaction. */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2005-10-27 09:29:40 +02:00
|
|
|
ibool
|
|
|
|
trx_start_low(
|
|
|
|
/*==========*/
|
|
|
|
/* out: TRUE */
|
2006-02-23 20:25:29 +01:00
|
|
|
trx_t* trx, /* in: transaction */
|
2005-10-27 09:29:40 +02:00
|
|
|
ulint rseg_id);/* in: rollback segment id; if ULINT_UNDEFINED
|
|
|
|
is passed, the system chooses the rollback segment
|
|
|
|
automatically in a round-robin fashion */
|
|
|
|
/*****************************************************************
|
|
|
|
Starts the transaction if it is not yet started. */
|
|
|
|
UNIV_INLINE
|
|
|
|
void
|
|
|
|
trx_start_if_not_started(
|
|
|
|
/*=====================*/
|
|
|
|
trx_t* trx); /* in: transaction */
|
|
|
|
/*****************************************************************
|
|
|
|
Starts the transaction if it is not yet started. Assumes we have reserved
|
|
|
|
the kernel mutex! */
|
|
|
|
UNIV_INLINE
|
|
|
|
void
|
|
|
|
trx_start_if_not_started_low(
|
|
|
|
/*=========================*/
|
|
|
|
trx_t* trx); /* in: transaction */
|
|
|
|
/********************************************************************
|
|
|
|
Commits a transaction. */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2005-10-27 09:29:40 +02:00
|
|
|
void
|
|
|
|
trx_commit_off_kernel(
|
|
|
|
/*==================*/
|
|
|
|
trx_t* trx); /* in: transaction */
|
|
|
|
/********************************************************************
|
|
|
|
Cleans up a transaction at database startup. The cleanup is needed if
|
|
|
|
the transaction already got to the middle of a commit when the database
|
|
|
|
crashed, andf we cannot roll it back. */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2005-10-27 09:29:40 +02:00
|
|
|
void
|
|
|
|
trx_cleanup_at_db_startup(
|
|
|
|
/*======================*/
|
|
|
|
trx_t* trx); /* in: transaction */
|
|
|
|
/**************************************************************************
|
|
|
|
Does the transaction commit for MySQL. */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2005-10-27 09:29:40 +02:00
|
|
|
ulint
|
|
|
|
trx_commit_for_mysql(
|
|
|
|
/*=================*/
|
2007-06-21 12:42:20 +02:00
|
|
|
/* out: DB_SUCCESS or error number */
|
2005-10-27 09:29:40 +02:00
|
|
|
trx_t* trx); /* in: trx handle */
|
|
|
|
/**************************************************************************
|
|
|
|
Does the transaction prepare for MySQL. */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2005-10-27 09:29:40 +02:00
|
|
|
ulint
|
|
|
|
trx_prepare_for_mysql(
|
2006-02-23 20:25:29 +01:00
|
|
|
/*==================*/
|
2005-10-27 09:29:40 +02:00
|
|
|
/* out: 0 or error number */
|
|
|
|
trx_t* trx); /* in: trx handle */
|
|
|
|
/**************************************************************************
|
|
|
|
This function is used to find number of prepared transactions and
|
|
|
|
their transaction objects for a recovery. */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2005-10-27 09:29:40 +02:00
|
|
|
int
|
|
|
|
trx_recover_for_mysql(
|
|
|
|
/*==================*/
|
|
|
|
/* out: number of prepared transactions */
|
2006-02-23 20:25:29 +01:00
|
|
|
XID* xid_list, /* in/out: prepared transactions */
|
2005-10-27 09:29:40 +02:00
|
|
|
ulint len); /* in: number of slots in xid_list */
|
|
|
|
/***********************************************************************
|
|
|
|
This function is used to find one X/Open XA distributed transaction
|
|
|
|
which is in the prepared state */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2005-10-27 09:29:40 +02:00
|
|
|
trx_t *
|
|
|
|
trx_get_trx_by_xid(
|
|
|
|
/*===============*/
|
|
|
|
/* out: trx or NULL */
|
|
|
|
XID* xid); /* in: X/Open XA transaction identification */
|
|
|
|
/**************************************************************************
|
|
|
|
If required, flushes the log to disk if we called trx_commit_for_mysql()
|
|
|
|
with trx->flush_log_later == TRUE. */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2005-10-27 09:29:40 +02:00
|
|
|
ulint
|
|
|
|
trx_commit_complete_for_mysql(
|
|
|
|
/*==========================*/
|
|
|
|
/* out: 0 or error number */
|
|
|
|
trx_t* trx); /* in: trx handle */
|
|
|
|
/**************************************************************************
|
|
|
|
Marks the latest SQL statement ended. */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2005-10-27 09:29:40 +02:00
|
|
|
void
|
|
|
|
trx_mark_sql_stat_end(
|
|
|
|
/*==================*/
|
|
|
|
trx_t* trx); /* in: trx handle */
|
|
|
|
/************************************************************************
|
|
|
|
Assigns a read view for a consistent read query. All the consistent reads
|
|
|
|
within the same transaction will get the same read view, which is created
|
|
|
|
when this function is first called for a new started transaction. */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2005-10-27 09:29:40 +02:00
|
|
|
read_view_t*
|
|
|
|
trx_assign_read_view(
|
|
|
|
/*=================*/
|
|
|
|
/* out: consistent read view */
|
|
|
|
trx_t* trx); /* in: active transaction */
|
|
|
|
/***************************************************************
|
|
|
|
The transaction must be in the TRX_QUE_LOCK_WAIT state. Puts it to
|
|
|
|
the TRX_QUE_RUNNING state and releases query threads which were
|
|
|
|
waiting for a lock in the wait_thrs list. */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2005-10-27 09:29:40 +02:00
|
|
|
void
|
|
|
|
trx_end_lock_wait(
|
|
|
|
/*==============*/
|
|
|
|
trx_t* trx); /* in: transaction */
|
|
|
|
/********************************************************************
|
|
|
|
Sends a signal to a trx object. */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2006-06-13 22:23:26 +02:00
|
|
|
void
|
2005-10-27 09:29:40 +02:00
|
|
|
trx_sig_send(
|
|
|
|
/*=========*/
|
|
|
|
trx_t* trx, /* in: trx handle */
|
|
|
|
ulint type, /* in: signal type */
|
|
|
|
ulint sender, /* in: TRX_SIG_SELF or
|
|
|
|
TRX_SIG_OTHER_SESS */
|
|
|
|
que_thr_t* receiver_thr, /* in: query thread which wants the
|
|
|
|
reply, or NULL; if type is
|
|
|
|
TRX_SIG_END_WAIT, this must be NULL */
|
2006-02-23 20:25:29 +01:00
|
|
|
trx_savept_t* savept, /* in: possible rollback savepoint, or
|
2005-10-27 09:29:40 +02:00
|
|
|
NULL */
|
|
|
|
que_thr_t** next_thr); /* in/out: next query thread to run;
|
|
|
|
if the value which is passed in is
|
|
|
|
a pointer to a NULL pointer, then the
|
|
|
|
calling function can start running
|
|
|
|
a new query thread; if the parameter
|
|
|
|
is NULL, it is ignored */
|
|
|
|
/********************************************************************
|
|
|
|
Send the reply message when a signal in the queue of the trx has
|
|
|
|
been handled. */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2005-10-27 09:29:40 +02:00
|
|
|
void
|
|
|
|
trx_sig_reply(
|
|
|
|
/*==========*/
|
|
|
|
trx_sig_t* sig, /* in: signal */
|
|
|
|
que_thr_t** next_thr); /* in/out: next query thread to run;
|
|
|
|
if the value which is passed in is
|
|
|
|
a pointer to a NULL pointer, then the
|
|
|
|
calling function can start running
|
|
|
|
a new query thread */
|
|
|
|
/********************************************************************
|
|
|
|
Removes the signal object from a trx signal queue. */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2005-10-27 09:29:40 +02:00
|
|
|
void
|
|
|
|
trx_sig_remove(
|
|
|
|
/*===========*/
|
|
|
|
trx_t* trx, /* in: trx handle */
|
|
|
|
trx_sig_t* sig); /* in, own: signal */
|
|
|
|
/********************************************************************
|
|
|
|
Starts handling of a trx signal. */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2005-10-27 09:29:40 +02:00
|
|
|
void
|
|
|
|
trx_sig_start_handle(
|
|
|
|
/*=================*/
|
|
|
|
trx_t* trx, /* in: trx handle */
|
|
|
|
que_thr_t** next_thr); /* in/out: next query thread to run;
|
|
|
|
if the value which is passed in is
|
|
|
|
a pointer to a NULL pointer, then the
|
|
|
|
calling function can start running
|
|
|
|
a new query thread */
|
|
|
|
/********************************************************************
|
|
|
|
Ends signal handling. If the session is in the error state, and
|
|
|
|
trx->graph_before_signal_handling != NULL, returns control to the error
|
|
|
|
handling routine of the graph (currently only returns the control to the
|
|
|
|
graph root which then sends an error message to the client). */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2005-10-27 09:29:40 +02:00
|
|
|
void
|
|
|
|
trx_end_signal_handling(
|
|
|
|
/*====================*/
|
|
|
|
trx_t* trx); /* in: trx */
|
|
|
|
/*************************************************************************
|
|
|
|
Creates a commit command node struct. */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2005-10-27 09:29:40 +02:00
|
|
|
commit_node_t*
|
|
|
|
commit_node_create(
|
|
|
|
/*===============*/
|
|
|
|
/* out, own: commit node struct */
|
|
|
|
mem_heap_t* heap); /* in: mem heap where created */
|
|
|
|
/***************************************************************
|
|
|
|
Performs an execution step for a commit type node in a query graph. */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2005-10-27 09:29:40 +02:00
|
|
|
que_thr_t*
|
|
|
|
trx_commit_step(
|
|
|
|
/*============*/
|
|
|
|
/* out: query thread to run next, or NULL */
|
|
|
|
que_thr_t* thr); /* in: query thread */
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
Prints info about a transaction to the given file. The caller must own the
|
|
|
|
kernel mutex and must have called
|
|
|
|
innobase_mysql_prepare_print_arbitrary_thd(), unless he knows that MySQL
|
|
|
|
or InnoDB cannot meanwhile change the info printed here. */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2005-10-27 09:29:40 +02:00
|
|
|
void
|
|
|
|
trx_print(
|
|
|
|
/*======*/
|
|
|
|
FILE* f, /* in: output stream */
|
|
|
|
trx_t* trx, /* in: transaction */
|
2006-02-23 20:25:29 +01:00
|
|
|
ulint max_query_len); /* in: max query length to print, or 0 to
|
2005-10-27 09:29:40 +02:00
|
|
|
use the default max length */
|
|
|
|
|
2007-10-19 12:52:25 +02:00
|
|
|
/** Type of data dictionary operation */
|
|
|
|
enum trx_dict_op {
|
|
|
|
/** The transaction is not modifying the data dictionary. */
|
|
|
|
TRX_DICT_OP_NONE = 0,
|
|
|
|
/** The transaction is creating a table or an index, or
|
|
|
|
dropping a table. The table must be dropped in crash
|
|
|
|
recovery. This and TRX_DICT_OP_NONE are the only possible
|
|
|
|
operation modes in crash recovery. */
|
|
|
|
TRX_DICT_OP_TABLE = 1,
|
2007-11-29 11:34:55 +01:00
|
|
|
/** The transaction is creating or dropping an index in an
|
|
|
|
existing table. In crash recovery, the the data dictionary
|
|
|
|
must be locked, but the table must not be dropped. */
|
2008-01-25 15:26:07 +01:00
|
|
|
TRX_DICT_OP_INDEX = 2
|
2007-10-19 12:52:25 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
Determine if a transaction is a dictionary operation. */
|
|
|
|
UNIV_INLINE
|
|
|
|
enum trx_dict_op
|
|
|
|
trx_get_dict_operation(
|
|
|
|
/*===================*/
|
|
|
|
/* out: dictionary operation mode */
|
|
|
|
const trx_t* trx) /* in: transaction */
|
|
|
|
__attribute__((pure));
|
|
|
|
/**************************************************************************
|
|
|
|
Flag a transaction a dictionary operation. */
|
|
|
|
UNIV_INLINE
|
|
|
|
void
|
|
|
|
trx_set_dict_operation(
|
|
|
|
/*===================*/
|
|
|
|
trx_t* trx, /* in/out: transaction */
|
|
|
|
enum trx_dict_op op); /* in: operation, not
|
|
|
|
TRX_DICT_OP_NONE */
|
|
|
|
|
2005-10-27 09:29:40 +02:00
|
|
|
#ifndef UNIV_HOTBACKUP
|
|
|
|
/**************************************************************************
|
|
|
|
Determines if the currently running transaction has been interrupted. */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2005-10-27 09:29:40 +02:00
|
|
|
ibool
|
|
|
|
trx_is_interrupted(
|
|
|
|
/*===============*/
|
|
|
|
/* out: TRUE if interrupted */
|
|
|
|
trx_t* trx); /* in: transaction */
|
|
|
|
#else /* !UNIV_HOTBACKUP */
|
|
|
|
#define trx_is_interrupted(trx) FALSE
|
|
|
|
#endif /* !UNIV_HOTBACKUP */
|
|
|
|
|
2007-05-29 10:48:16 +02:00
|
|
|
/***********************************************************************
|
2007-11-28 08:07:23 +01:00
|
|
|
Calculates the "weight" of a transaction. The weight of one transaction
|
|
|
|
is estimated as the number of altered rows + the number of locked rows.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define TRX_WEIGHT(t) \
|
|
|
|
ut_dulint_add((t)->undo_no, UT_LIST_GET_LEN((t)->trx_locks))
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
Compares the "weight" (or size) of two transactions. Transactions that
|
|
|
|
have edited non-transactional tables are considered heavier than ones
|
|
|
|
that have not. */
|
2008-02-18 19:38:33 +01:00
|
|
|
UNIV_INTERN
|
2007-05-29 10:48:16 +02:00
|
|
|
int
|
|
|
|
trx_weight_cmp(
|
|
|
|
/*===========*/
|
2007-08-01 10:01:47 +02:00
|
|
|
/* out: <0, 0 or >0; similar to strcmp(3) */
|
|
|
|
const trx_t* a, /* in: the first transaction to be compared */
|
|
|
|
const trx_t* b); /* in: the second transaction to be compared */
|
2005-10-27 09:29:40 +02:00
|
|
|
|
2007-08-23 11:29:28 +02:00
|
|
|
/***********************************************************************
|
|
|
|
Retrieves transacion's id, represented as unsigned long long. */
|
|
|
|
UNIV_INLINE
|
|
|
|
ullint
|
|
|
|
trx_get_id(
|
|
|
|
/*=======*/
|
|
|
|
/* out: transaction's id */
|
|
|
|
const trx_t* trx); /* in: transaction */
|
|
|
|
|
|
|
|
/* Maximum length of a string that can be returned by
|
|
|
|
trx_get_que_state_str(). */
|
|
|
|
#define TRX_QUE_STATE_STR_MAX_LEN 12 /* "ROLLING BACK" */
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
Retrieves transaction's que state in a human readable string. The string
|
|
|
|
should not be free()'d or modified. */
|
|
|
|
UNIV_INLINE
|
|
|
|
const char*
|
|
|
|
trx_get_que_state_str(
|
|
|
|
/*==================*/
|
|
|
|
/* out: string in the data segment */
|
|
|
|
const trx_t* trx); /* in: transaction */
|
|
|
|
|
2005-10-27 09:29:40 +02:00
|
|
|
/* Signal to a transaction */
|
|
|
|
struct trx_sig_struct{
|
2007-09-05 12:18:03 +02:00
|
|
|
unsigned type:3; /* signal type */
|
|
|
|
unsigned sender:1; /* TRX_SIG_SELF or
|
2005-10-27 09:29:40 +02:00
|
|
|
TRX_SIG_OTHER_SESS */
|
|
|
|
que_thr_t* receiver; /* non-NULL if the sender of the signal
|
|
|
|
wants reply after the operation induced
|
|
|
|
by the signal is completed */
|
|
|
|
trx_savept_t savept; /* possible rollback savepoint */
|
|
|
|
UT_LIST_NODE_T(trx_sig_t)
|
|
|
|
signals; /* queue of pending signals to the
|
|
|
|
transaction */
|
|
|
|
UT_LIST_NODE_T(trx_sig_t)
|
|
|
|
reply_signals; /* list of signals for which the sender
|
|
|
|
transaction is waiting a reply */
|
|
|
|
};
|
|
|
|
|
|
|
|
#define TRX_MAGIC_N 91118598
|
|
|
|
|
|
|
|
/* The transaction handle; every session has a trx object which is freed only
|
|
|
|
when the session is freed; in addition there may be session-less transactions
|
|
|
|
rolling back after a database recovery */
|
|
|
|
|
|
|
|
struct trx_struct{
|
|
|
|
ulint magic_n;
|
|
|
|
/* All the next fields are protected by the kernel mutex, except the
|
|
|
|
undo logs which are protected by undo_mutex */
|
|
|
|
const char* op_info; /* English text describing the
|
|
|
|
current operation, or an empty
|
|
|
|
string */
|
2007-04-02 07:39:41 +02:00
|
|
|
unsigned is_purge:1; /* 0=user transaction, 1=purge */
|
2007-10-29 16:32:19 +01:00
|
|
|
unsigned is_recovered:1; /* 0=normal transaction,
|
|
|
|
1=recovered, must be rolled back */
|
2007-09-05 12:18:03 +02:00
|
|
|
unsigned conc_state:2; /* state of the trx from the point
|
2005-10-27 09:29:40 +02:00
|
|
|
of view of concurrency control:
|
|
|
|
TRX_ACTIVE, TRX_COMMITTED_IN_MEMORY,
|
|
|
|
... */
|
2007-09-05 12:18:03 +02:00
|
|
|
unsigned que_state:2; /* valid when conc_state == TRX_ACTIVE:
|
|
|
|
TRX_QUE_RUNNING, TRX_QUE_LOCK_WAIT,
|
|
|
|
... */
|
|
|
|
unsigned isolation_level:2;/* TRX_ISO_REPEATABLE_READ, ... */
|
|
|
|
unsigned check_foreigns:1;/* normally TRUE, but if the user
|
2005-10-27 09:29:40 +02:00
|
|
|
wants to suppress foreign key checks,
|
|
|
|
(in table imports, for example) we
|
|
|
|
set this FALSE */
|
2007-09-05 12:18:03 +02:00
|
|
|
unsigned check_unique_secondary:1;
|
2005-10-27 09:29:40 +02:00
|
|
|
/* normally TRUE, but if the user
|
|
|
|
wants to speed up inserts by
|
|
|
|
suppressing unique key checks
|
|
|
|
for secondary indexes when we decide
|
|
|
|
if we can use the insert buffer for
|
|
|
|
them, we set this FALSE */
|
2007-09-05 12:18:03 +02:00
|
|
|
unsigned support_xa:1; /* normally we do the XA two-phase
|
2005-10-27 09:29:40 +02:00
|
|
|
commit steps, but by setting this to
|
|
|
|
FALSE, one can save CPU time and about
|
|
|
|
150 bytes in the undo log size as then
|
|
|
|
we skip XA steps */
|
2007-09-11 02:41:02 +02:00
|
|
|
unsigned flush_log_later:1;/* when we commit the transaction
|
|
|
|
in MySQL's binlog write, we will
|
|
|
|
flush the log to disk later in
|
|
|
|
a separate call */
|
2007-09-05 12:18:03 +02:00
|
|
|
unsigned must_flush_log_later:1;/* this flag is set to TRUE in
|
2005-10-27 09:29:40 +02:00
|
|
|
trx_commit_off_kernel() if
|
|
|
|
flush_log_later was TRUE, and there
|
|
|
|
were modifications by the transaction;
|
|
|
|
in that case we must flush the log
|
|
|
|
in trx_commit_complete_for_mysql() */
|
2007-10-19 12:52:25 +02:00
|
|
|
unsigned dict_operation:2;/**< @see enum trx_dict_op */
|
2007-05-14 11:07:15 +02:00
|
|
|
unsigned duplicates:2; /* TRX_DUP_IGNORE | TRX_DUP_REPLACE */
|
|
|
|
unsigned active_trans:2; /* 1 - if a transaction in MySQL
|
2005-10-27 09:29:40 +02:00
|
|
|
is active. 2 - if prepare_commit_mutex
|
2006-02-23 20:25:29 +01:00
|
|
|
was taken */
|
2007-09-05 12:18:03 +02:00
|
|
|
unsigned has_search_latch:1;
|
|
|
|
/* TRUE if this trx has latched the
|
|
|
|
search system latch in S-mode */
|
|
|
|
unsigned declared_to_be_inside_innodb:1;
|
|
|
|
/* this is TRUE if we have declared
|
|
|
|
this transaction in
|
|
|
|
srv_conc_enter_innodb to be inside the
|
|
|
|
InnoDB engine */
|
|
|
|
unsigned handling_signals:1;/* this is TRUE as long as the trx
|
|
|
|
is handling signals */
|
|
|
|
unsigned dict_operation_lock_mode:2;
|
|
|
|
/* 0, RW_S_LATCH, or RW_X_LATCH:
|
|
|
|
the latch mode trx currently holds
|
|
|
|
on dict_operation_lock */
|
|
|
|
time_t start_time; /* time the trx object was created
|
|
|
|
or the state last time became
|
|
|
|
TRX_ACTIVE */
|
|
|
|
dulint id; /* transaction id */
|
|
|
|
XID xid; /* X/Open XA transaction
|
|
|
|
identification to identify a
|
|
|
|
transaction branch */
|
|
|
|
dulint no; /* transaction serialization number ==
|
|
|
|
max trx id when the transaction is
|
|
|
|
moved to COMMITTED_IN_MEMORY state */
|
|
|
|
ib_uint64_t commit_lsn; /* lsn at the time of the commit */
|
|
|
|
dulint table_id; /* Table to drop iff dict_operation
|
|
|
|
is TRUE, or ut_dulint_zero. */
|
|
|
|
/*------------------------------*/
|
2006-02-23 20:25:29 +01:00
|
|
|
void* mysql_thd; /* MySQL thread handle corresponding
|
2005-10-27 09:29:40 +02:00
|
|
|
to this trx, or NULL */
|
|
|
|
char** mysql_query_str;/* pointer to the field in mysqld_thd
|
|
|
|
which contains the pointer to the
|
|
|
|
current SQL query string */
|
|
|
|
const char* mysql_log_file_name;
|
|
|
|
/* if MySQL binlog is used, this field
|
|
|
|
contains a pointer to the latest file
|
|
|
|
name; this is NULL if binlog is not
|
|
|
|
used */
|
|
|
|
ib_longlong mysql_log_offset;/* if MySQL binlog is used, this field
|
|
|
|
contains the end offset of the binlog
|
|
|
|
entry */
|
|
|
|
os_thread_id_t mysql_thread_id;/* id of the MySQL thread associated
|
|
|
|
with this transaction object */
|
|
|
|
ulint mysql_process_no;/* since in Linux, 'top' reports
|
|
|
|
process id's and not thread id's, we
|
|
|
|
store the process number too */
|
|
|
|
/*------------------------------*/
|
|
|
|
ulint n_mysql_tables_in_use; /* number of Innobase tables
|
|
|
|
used in the processing of the current
|
|
|
|
SQL statement in MySQL */
|
2006-02-23 20:25:29 +01:00
|
|
|
ulint mysql_n_tables_locked;
|
|
|
|
/* how many tables the current SQL
|
2005-10-27 09:29:40 +02:00
|
|
|
statement uses, except those
|
|
|
|
in consistent read */
|
|
|
|
ulint search_latch_timeout;
|
|
|
|
/* If we notice that someone is
|
|
|
|
waiting for our S-lock on the search
|
|
|
|
latch to be released, we wait in
|
|
|
|
row0sel.c for BTR_SEA_TIMEOUT new
|
|
|
|
searches until we try to keep
|
|
|
|
the search latch again over
|
|
|
|
calls from MySQL; this is intended
|
|
|
|
to reduce contention on the search
|
|
|
|
latch */
|
|
|
|
/*------------------------------*/
|
|
|
|
ulint n_tickets_to_enter_innodb;
|
|
|
|
/* this can be > 0 only when
|
|
|
|
declared_to_... is TRUE; when we come
|
|
|
|
to srv_conc_innodb_enter, if the value
|
2006-02-23 20:25:29 +01:00
|
|
|
here is > 0, we decrement this by 1 */
|
2005-10-27 09:29:40 +02:00
|
|
|
/*------------------------------*/
|
|
|
|
lock_t* auto_inc_lock; /* possible auto-inc lock reserved by
|
|
|
|
the transaction; note that it is also
|
|
|
|
in the lock list trx_locks */
|
|
|
|
dict_index_t* new_rec_locks[2];/* these are normally NULL; if
|
2006-04-12 11:32:17 +02:00
|
|
|
srv_locks_unsafe_for_binlog is TRUE
|
|
|
|
or session is using READ COMMITTED
|
|
|
|
isolation level,
|
2005-10-27 09:29:40 +02:00
|
|
|
in a cursor search, if we set a new
|
|
|
|
record lock on an index, this is set
|
|
|
|
to point to the index; this is
|
|
|
|
used in releasing the locks under the
|
|
|
|
cursors if we are performing an UPDATE
|
|
|
|
and we determine after retrieving
|
|
|
|
the row that it does not need to be
|
|
|
|
locked; thus, these can be used to
|
|
|
|
implement a 'mini-rollback' that
|
|
|
|
releases the latest record locks */
|
|
|
|
UT_LIST_NODE_T(trx_t)
|
|
|
|
trx_list; /* list of transactions */
|
|
|
|
UT_LIST_NODE_T(trx_t)
|
|
|
|
mysql_trx_list; /* list of transactions created for
|
|
|
|
MySQL */
|
|
|
|
/*------------------------------*/
|
|
|
|
ulint error_state; /* 0 if no error, otherwise error
|
|
|
|
number; NOTE That ONLY the thread
|
|
|
|
doing the transaction is allowed to
|
|
|
|
set this field: this is NOT protected
|
|
|
|
by the kernel mutex */
|
2007-08-15 08:53:34 +02:00
|
|
|
const dict_index_t*error_info; /* if the error number indicates a
|
2005-10-27 09:29:40 +02:00
|
|
|
duplicate key error, a pointer to
|
|
|
|
the problematic index is stored here */
|
2007-04-04 13:05:33 +02:00
|
|
|
ulint error_key_num; /* if the index creation fails to a
|
|
|
|
duplicate key error, a mysql key
|
|
|
|
number of that index is stored here */
|
2005-10-27 09:29:40 +02:00
|
|
|
sess_t* sess; /* session of the trx, NULL if none */
|
|
|
|
que_t* graph; /* query currently run in the session,
|
|
|
|
or NULL if none; NOTE that the query
|
|
|
|
belongs to the session, and it can
|
|
|
|
survive over a transaction commit, if
|
|
|
|
it is a stored procedure with a COMMIT
|
|
|
|
WORK statement, for instance */
|
|
|
|
ulint n_active_thrs; /* number of active query threads */
|
|
|
|
que_t* graph_before_signal_handling;
|
|
|
|
/* value of graph when signal handling
|
|
|
|
for this trx started: this is used to
|
|
|
|
return control to the original query
|
|
|
|
graph for error processing */
|
|
|
|
trx_sig_t sig; /* one signal object can be allocated
|
|
|
|
in this space, avoiding mem_alloc */
|
|
|
|
UT_LIST_BASE_NODE_T(trx_sig_t)
|
|
|
|
signals; /* queue of processed or pending
|
|
|
|
signals to the trx */
|
|
|
|
UT_LIST_BASE_NODE_T(trx_sig_t)
|
|
|
|
reply_signals; /* list of signals sent by the query
|
|
|
|
threads of this trx for which a thread
|
|
|
|
is waiting for a reply; if this trx is
|
|
|
|
killed, the reply requests in the list
|
|
|
|
must be canceled */
|
|
|
|
/*------------------------------*/
|
|
|
|
lock_t* wait_lock; /* if trx execution state is
|
|
|
|
TRX_QUE_LOCK_WAIT, this points to
|
|
|
|
the lock request, otherwise this is
|
|
|
|
NULL */
|
|
|
|
ibool was_chosen_as_deadlock_victim;
|
|
|
|
/* when the transaction decides to wait
|
2007-05-14 11:07:15 +02:00
|
|
|
for a lock, it sets this to FALSE;
|
2005-10-27 09:29:40 +02:00
|
|
|
if another transaction chooses this
|
|
|
|
transaction as a victim in deadlock
|
|
|
|
resolution, it sets this to TRUE */
|
2006-02-23 20:25:29 +01:00
|
|
|
time_t wait_started; /* lock wait started at this time */
|
2005-10-27 09:29:40 +02:00
|
|
|
UT_LIST_BASE_NODE_T(que_thr_t)
|
|
|
|
wait_thrs; /* query threads belonging to this
|
|
|
|
trx that are in the QUE_THR_LOCK_WAIT
|
|
|
|
state */
|
|
|
|
ulint deadlock_mark; /* a mark field used in deadlock
|
2007-09-05 12:18:03 +02:00
|
|
|
checking algorithm. This must be
|
|
|
|
in its own machine word, because
|
|
|
|
it can be changed by other
|
|
|
|
threads while holding kernel_mutex. */
|
2005-10-27 09:29:40 +02:00
|
|
|
/*------------------------------*/
|
|
|
|
mem_heap_t* lock_heap; /* memory heap for the locks of the
|
|
|
|
transaction */
|
2006-02-23 20:25:29 +01:00
|
|
|
UT_LIST_BASE_NODE_T(lock_t)
|
2005-10-27 09:29:40 +02:00
|
|
|
trx_locks; /* locks reserved by the transaction */
|
|
|
|
/*------------------------------*/
|
2006-02-23 20:25:29 +01:00
|
|
|
mem_heap_t* global_read_view_heap;
|
|
|
|
/* memory heap for the global read
|
2005-10-27 09:29:40 +02:00
|
|
|
view */
|
|
|
|
read_view_t* global_read_view;
|
|
|
|
/* consistent read view associated
|
|
|
|
to a transaction or NULL */
|
|
|
|
read_view_t* read_view; /* consistent read view used in the
|
|
|
|
transaction or NULL, this read view
|
2006-02-23 20:25:29 +01:00
|
|
|
if defined can be normal read view
|
|
|
|
associated to a transaction (i.e.
|
2005-10-27 09:29:40 +02:00
|
|
|
same as global_read_view) or read view
|
|
|
|
associated to a cursor */
|
|
|
|
/*------------------------------*/
|
2006-02-23 20:25:29 +01:00
|
|
|
UT_LIST_BASE_NODE_T(trx_named_savept_t)
|
2005-10-27 09:29:40 +02:00
|
|
|
trx_savepoints; /* savepoints set with SAVEPOINT ...,
|
|
|
|
oldest first */
|
|
|
|
/*------------------------------*/
|
|
|
|
mutex_t undo_mutex; /* mutex protecting the fields in this
|
|
|
|
section (down to undo_no_arr), EXCEPT
|
|
|
|
last_sql_stat_start, which can be
|
|
|
|
accessed only when we know that there
|
|
|
|
cannot be any activity in the undo
|
|
|
|
logs! */
|
|
|
|
dulint undo_no; /* next undo log record number to
|
2007-05-14 11:07:15 +02:00
|
|
|
assign; since the undo log is
|
|
|
|
private for a transaction, this
|
|
|
|
is a simple ascending sequence
|
|
|
|
with no gaps; thus it represents
|
|
|
|
the number of modified/inserted
|
|
|
|
rows in a transaction */
|
2005-10-27 09:29:40 +02:00
|
|
|
trx_savept_t last_sql_stat_start;
|
|
|
|
/* undo_no when the last sql statement
|
|
|
|
was started: in case of an error, trx
|
|
|
|
is rolled back down to this undo
|
|
|
|
number; see note at undo_mutex! */
|
|
|
|
trx_rseg_t* rseg; /* rollback segment assigned to the
|
|
|
|
transaction, or NULL if not assigned
|
|
|
|
yet */
|
2006-02-23 20:25:29 +01:00
|
|
|
trx_undo_t* insert_undo; /* pointer to the insert undo log, or
|
2005-10-27 09:29:40 +02:00
|
|
|
NULL if no inserts performed yet */
|
2006-02-23 20:25:29 +01:00
|
|
|
trx_undo_t* update_undo; /* pointer to the update undo log, or
|
2005-10-27 09:29:40 +02:00
|
|
|
NULL if no update performed yet */
|
|
|
|
dulint roll_limit; /* least undo number to undo during
|
|
|
|
a rollback */
|
|
|
|
ulint pages_undone; /* number of undo log pages undone
|
|
|
|
since the last undo log truncation */
|
|
|
|
trx_undo_arr_t* undo_no_arr; /* array of undo numbers of undo log
|
|
|
|
records which are currently processed
|
|
|
|
by a rollback operation */
|
2007-08-01 13:18:43 +02:00
|
|
|
ulint n_autoinc_rows; /* no. of AUTO-INC rows required for
|
|
|
|
an SQL statement. This is useful for
|
|
|
|
multi-row INSERTs */
|
2005-10-27 09:29:40 +02:00
|
|
|
/*------------------------------*/
|
|
|
|
char detailed_error[256]; /* detailed error message for last
|
|
|
|
error, or empty. */
|
|
|
|
};
|
|
|
|
|
2006-08-29 11:30:31 +02:00
|
|
|
#define TRX_MAX_N_THREADS 32 /* maximum number of
|
|
|
|
concurrent threads running a
|
|
|
|
single operation of a
|
|
|
|
transaction, e.g., a parallel
|
|
|
|
query */
|
2007-05-14 11:07:15 +02:00
|
|
|
/* Transaction concurrency states (trx->conc_state) */
|
2007-09-05 12:18:03 +02:00
|
|
|
#define TRX_NOT_STARTED 0
|
|
|
|
#define TRX_ACTIVE 1
|
|
|
|
#define TRX_COMMITTED_IN_MEMORY 2
|
|
|
|
#define TRX_PREPARED 3 /* Support for 2PC/XA */
|
2005-10-27 09:29:40 +02:00
|
|
|
|
2007-05-14 11:07:15 +02:00
|
|
|
/* Transaction execution states when trx->conc_state == TRX_ACTIVE */
|
2007-09-05 12:18:03 +02:00
|
|
|
#define TRX_QUE_RUNNING 0 /* transaction is running */
|
|
|
|
#define TRX_QUE_LOCK_WAIT 1 /* transaction is waiting for a lock */
|
|
|
|
#define TRX_QUE_ROLLING_BACK 2 /* transaction is rolling back */
|
|
|
|
#define TRX_QUE_COMMITTING 3 /* transaction is committing */
|
2005-10-27 09:29:40 +02:00
|
|
|
|
2007-05-14 11:07:15 +02:00
|
|
|
/* Transaction isolation levels (trx->isolation_level) */
|
2007-09-05 12:18:03 +02:00
|
|
|
#define TRX_ISO_READ_UNCOMMITTED 0 /* dirty read: non-locking
|
2005-10-27 09:29:40 +02:00
|
|
|
SELECTs are performed so that
|
|
|
|
we do not look at a possible
|
|
|
|
earlier version of a record;
|
|
|
|
thus they are not 'consistent'
|
|
|
|
reads under this isolation
|
|
|
|
level; otherwise like level
|
|
|
|
2 */
|
|
|
|
|
2007-09-05 12:18:03 +02:00
|
|
|
#define TRX_ISO_READ_COMMITTED 1 /* somewhat Oracle-like
|
2005-10-27 09:29:40 +02:00
|
|
|
isolation, except that in
|
|
|
|
range UPDATE and DELETE we
|
|
|
|
must block phantom rows
|
|
|
|
with next-key locks;
|
|
|
|
SELECT ... FOR UPDATE and ...
|
|
|
|
LOCK IN SHARE MODE only lock
|
|
|
|
the index records, NOT the
|
|
|
|
gaps before them, and thus
|
|
|
|
allow free inserting;
|
|
|
|
each consistent read reads its
|
|
|
|
own snapshot */
|
|
|
|
|
2007-09-05 12:18:03 +02:00
|
|
|
#define TRX_ISO_REPEATABLE_READ 2 /* this is the default;
|
2005-10-27 09:29:40 +02:00
|
|
|
all consistent reads in the
|
|
|
|
same trx read the same
|
|
|
|
snapshot;
|
|
|
|
full next-key locking used
|
|
|
|
in locking reads to block
|
|
|
|
insertions into gaps */
|
|
|
|
|
2007-09-05 12:18:03 +02:00
|
|
|
#define TRX_ISO_SERIALIZABLE 3 /* all plain SELECTs are
|
2005-10-27 09:29:40 +02:00
|
|
|
converted to LOCK IN SHARE
|
|
|
|
MODE reads */
|
|
|
|
|
2007-05-14 11:07:15 +02:00
|
|
|
/* Treatment of duplicate values (trx->duplicates; for example, in inserts).
|
|
|
|
Multiple flags can be combined with bitwise OR. */
|
|
|
|
#define TRX_DUP_IGNORE 1 /* duplicate rows are to be updated */
|
|
|
|
#define TRX_DUP_REPLACE 2 /* duplicate rows are to be replaced */
|
|
|
|
|
|
|
|
|
2005-10-27 09:29:40 +02:00
|
|
|
/* Types of a trx signal */
|
2007-09-05 12:18:03 +02:00
|
|
|
#define TRX_SIG_NO_SIGNAL 0
|
2005-10-27 09:29:40 +02:00
|
|
|
#define TRX_SIG_TOTAL_ROLLBACK 1
|
|
|
|
#define TRX_SIG_ROLLBACK_TO_SAVEPT 2
|
|
|
|
#define TRX_SIG_COMMIT 3
|
|
|
|
#define TRX_SIG_ERROR_OCCURRED 4
|
|
|
|
#define TRX_SIG_BREAK_EXECUTION 5
|
|
|
|
|
|
|
|
/* Sender types of a signal */
|
2007-09-05 12:18:03 +02:00
|
|
|
#define TRX_SIG_SELF 0 /* sent by the session itself, or
|
2005-10-27 09:29:40 +02:00
|
|
|
by an error occurring within this
|
|
|
|
session */
|
2007-09-05 12:18:03 +02:00
|
|
|
#define TRX_SIG_OTHER_SESS 1 /* sent by another session (which
|
2005-10-27 09:29:40 +02:00
|
|
|
must hold rights to this) */
|
2006-02-23 20:25:29 +01:00
|
|
|
|
2005-10-27 09:29:40 +02:00
|
|
|
/* Commit command node in a query graph */
|
|
|
|
struct commit_node_struct{
|
|
|
|
que_common_t common; /* node type: QUE_NODE_COMMIT */
|
|
|
|
ulint state; /* node execution state */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Commit node states */
|
|
|
|
#define COMMIT_NODE_SEND 1
|
|
|
|
#define COMMIT_NODE_WAIT 2
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef UNIV_NONINL
|
|
|
|
#include "trx0trx.ic"
|
|
|
|
#endif
|
|
|
|
|
2006-02-23 20:25:29 +01:00
|
|
|
#endif
|