mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 15:54:37 +01:00
d33b523271
Fixed BUGS: #3300: "UPDATE statement with no index column in where condition locks all rows" Implement semi-consistent read to reduce lock conflicts at the cost of breaking serializability. ha_innobase::unlock_row(): reset the "did semi consistent read" flag ha_innobase::was_semi_consistent_read(), ha_innobase::try_semi_consistent_read(): new methods row_prebuilt_t, row_create_prebuilt(): add field row_read_type for keeping track of semi-consistent reads row_vers_build_for_semi_consistent_read(), row_sel_build_committed_vers_for_mysql(): new functions row_search_for_mysql(): implement semi-consistent reads #9802: "Foreign key checks disallow alter table". Added test cases. #12456: "Cursor shows incorrect data - DML does not affect, probably caching" This patch implements a high-granularity read view to be used with cursors. In this high-granularity consistent read view modifications done by the creating transaction after the cursor is created or future transactions are not visible. But those modifications that transaction did before the cursor was created are visible. #12701: "Support >4GB buffer pool and log files on 64-bit Windows" Do not call os_file_create_tmpfile() at runtime. Instead, create all tempfiles at startup and guard access to them with mutexes. #13778: "If FOREIGN_KEY_CHECKS=0, one can create inconsistent FOREIGN KEYs". When FOREIGN_KEY_CHECKS=0 we still need to check that datatypes between foreign key references are compatible. #14189: "VARBINARY and BINARY variables: trailing space ignored with InnoDB" innobase_init(): Assert that DATA_MYSQL_BINARY_CHARSET_COLL == my_charset_bin.number. dtype_get_pad_char(): Do not pad VARBINARY or BINARY columns. row_ins_cascade_calc_update_vec(): Refuse ON UPDATE CASCADE when trying to change the length of a VARBINARY column that refers to or is referenced by a BINARY column. BINARY columns are no longer padded on comparison, and thus they cannot be padded on storage either. #14747: "Race condition can cause btr_search_drop_page_hash_index() to crash" Note that buf_block_t::index should be protected by btr_search_latch or an s-latch or x-latch on the index page. btr_search_drop_page_hash_index(): Read block->index while holding btr_search_latch and use the cached value in the loop. Remove some redundant assertions. #15108: "mysqld crashes when innodb_log_file_size is set > 4G" #15308: "Problem of Order with Enum Column in Primary Key" #15550: "mysqld crashes in printing a FOREIGN KEY error in InnoDB" row_ins_foreign_report_add_err(): When printing the parent record, use the index in the parent table rather than the index in the child table. #15653: "Slow inserts to InnoDB if many thousands of .ibd files" Keep track on unflushed modifications to file spaces. When there are tens of thousands of file spaces, flushing all files in fil_flush_file_spaces() would be very slow. fil_flush_file_spaces(): Only flush unflushed file spaces. fil_space_t, fil_system_t: Add a list of unflushed spaces. #15991: "innodb-file-per-table + symlink database + rename = cr" os_file_handle_error(): Map the error codes EXDEV, ENOTDIR, and EISDIR to the new code OS_FILE_PATH_ERROR. Treat this code as OS_FILE_PATH_ERROR. This fixes the crash on RENAME TABLE when the .ibd file is a symbolic link to a different file system. #16157: "InnoDB crashes when main location settings are empty" This patch is from Heikki. #16298: "InnoDB segfaults in INSERTs in upgrade of 4.0 -> 5.0 tables with VARCHAR BINARY" dict_load_columns(): Set the charset-collation code DATA_MYSQL_BINARY_CHARSET_COLL for those binary string columns that lack a charset-collation code, i.e., the tables were created with an older version of MySQL/InnoDB than 4.1.2. #16229: "MySQL/InnoDB uses full explicit table locks in trigger processing" Take a InnoDB table lock only if user has explicitly requested a table lock. Added some additional comments to store_lock() and external_lock(). #16387: "InnoDB crash when dropping a foreign key <table>_ibfk_0" Do not mistake TABLENAME_ibfk_0 for auto-generated id. dict_table_get_highest_foreign_id(): Ignore foreign constraint identifiers starting with the pattern TABLENAME_ibfk_0. #16582: "InnoDB: Error in an adaptive hash index pointer to page" Account for a race condition when dropping the adaptive hash index for a B-tree page. btr_search_drop_page_hash_index(): Retry the operation if a hash index with different parameters was built meanwhile. Add diagnostics for the case that hash node pointers to the page remain. btr_search_info_update_hash(), btr_search_info_update_slow(): Document the parameter "info" as in/out. #16814: "SHOW INNODB STATUS format error in LATEST FOREIGN KEY ERROR section" Add a missing newline to the LAST FOREIGN KEY ERROR section in SHOW INNODB STATUS output. dict_foreign_error_report(): Always print a newline after invoking dict_print_info_on_foreign_key_in_create_format(). #16827: "Better InnoDB error message if ibdata files omitted from my.cnf" #17126: "CHECK TABLE on InnoDB causes a short hang during check of adaptive hash" CHECK TABLE blocking other queries, by releasing the btr_search_latch periodically during the adaptive hash table validation. #17405: "Valgrind: conditional jump or move depends on unititialised values" buf_block_init(): Reset magic_n, buf_fix_count and io_fix to avoid testing uninitialized variables.
350 lines
10 KiB
C
350 lines
10 KiB
C
/******************************************************
|
|
Row undo
|
|
|
|
(c) 1997 Innobase Oy
|
|
|
|
Created 1/8/1997 Heikki Tuuri
|
|
*******************************************************/
|
|
|
|
#include "row0undo.h"
|
|
|
|
#ifdef UNIV_NONINL
|
|
#include "row0undo.ic"
|
|
#endif
|
|
|
|
#include "fsp0fsp.h"
|
|
#include "mach0data.h"
|
|
#include "trx0rseg.h"
|
|
#include "trx0trx.h"
|
|
#include "trx0roll.h"
|
|
#include "trx0undo.h"
|
|
#include "trx0purge.h"
|
|
#include "trx0rec.h"
|
|
#include "que0que.h"
|
|
#include "row0row.h"
|
|
#include "row0uins.h"
|
|
#include "row0umod.h"
|
|
#include "row0mysql.h"
|
|
#include "srv0srv.h"
|
|
|
|
/* How to undo row operations?
|
|
(1) For an insert, we have stored a prefix of the clustered index record
|
|
in the undo log. Using it, we look for the clustered record, and using
|
|
that we look for the records in the secondary indexes. The insert operation
|
|
may have been left incomplete, if the database crashed, for example.
|
|
We may have look at the trx id and roll ptr to make sure the record in the
|
|
clustered index is really the one for which the undo log record was
|
|
written. We can use the framework we get from the original insert op.
|
|
(2) Delete marking: We can use the framework we get from the original
|
|
delete mark op. We only have to check the trx id.
|
|
(3) Update: This may be the most complicated. We have to use the framework
|
|
we get from the original update op.
|
|
|
|
What if the same trx repeatedly deletes and inserts an identical row.
|
|
Then the row id changes and also roll ptr. What if the row id was not
|
|
part of the ordering fields in the clustered index? Maybe we have to write
|
|
it to undo log. Well, maybe not, because if we order the row id and trx id
|
|
in descending order, then the only undeleted copy is the first in the
|
|
index. Our searches in row operations always position the cursor before
|
|
the first record in the result set. But, if there is no key defined for
|
|
a table, then it would be desirable that row id is in ascending order.
|
|
So, lets store row id in descending order only if it is not an ordering
|
|
field in the clustered index.
|
|
|
|
NOTE: Deletes and inserts may lead to situation where there are identical
|
|
records in a secondary index. Is that a problem in the B-tree? Yes.
|
|
Also updates can lead to this, unless trx id and roll ptr are included in
|
|
ord fields.
|
|
(1) Fix in clustered indexes: include row id, trx id, and roll ptr
|
|
in node pointers of B-tree.
|
|
(2) Fix in secondary indexes: include all fields in node pointers, and
|
|
if an entry is inserted, check if it is equal to the right neighbor,
|
|
in which case update the right neighbor: the neighbor must be delete
|
|
marked, set it unmarked and write the trx id of the current transaction.
|
|
|
|
What if the same trx repeatedly updates the same row, updating a secondary
|
|
index field or not? Updating a clustered index ordering field?
|
|
|
|
(1) If it does not update the secondary index and not the clustered index
|
|
ord field. Then the secondary index record stays unchanged, but the
|
|
trx id in the secondary index record may be smaller than in the clustered
|
|
index record. This is no problem?
|
|
(2) If it updates secondary index ord field but not clustered: then in
|
|
secondary index there are delete marked records, which differ in an
|
|
ord field. No problem.
|
|
(3) Updates clustered ord field but not secondary, and secondary index
|
|
is unique. Then the record in secondary index is just updated at the
|
|
clustered ord field.
|
|
(4)
|
|
|
|
Problem with duplicate records:
|
|
Fix 1: Add a trx op no field to all indexes. A problem: if a trx with a
|
|
bigger trx id has inserted and delete marked a similar row, our trx inserts
|
|
again a similar row, and a trx with an even bigger id delete marks it. Then
|
|
the position of the row should change in the index if the trx id affects
|
|
the alphabetical ordering.
|
|
|
|
Fix 2: If an insert encounters a similar row marked deleted, we turn the
|
|
insert into an 'update' of the row marked deleted. Then we must write undo
|
|
info on the update. A problem: what if a purge operation tries to remove
|
|
the delete marked row?
|
|
|
|
We can think of the database row versions as a linked list which starts
|
|
from the record in the clustered index, and is linked by roll ptrs
|
|
through undo logs. The secondary index records are references which tell
|
|
what kinds of records can be found in this linked list for a record
|
|
in the clustered index.
|
|
|
|
How to do the purge? A record can be removed from the clustered index
|
|
if its linked list becomes empty, i.e., the row has been marked deleted
|
|
and its roll ptr points to the record in the undo log we are going through,
|
|
doing the purge. Similarly, during a rollback, a record can be removed
|
|
if the stored roll ptr in the undo log points to a trx already (being) purged,
|
|
or if the roll ptr is NULL, i.e., it was a fresh insert. */
|
|
|
|
/************************************************************************
|
|
Creates a row undo node to a query graph. */
|
|
|
|
undo_node_t*
|
|
row_undo_node_create(
|
|
/*=================*/
|
|
/* out, own: undo node */
|
|
trx_t* trx, /* in: transaction */
|
|
que_thr_t* parent, /* in: parent node, i.e., a thr node */
|
|
mem_heap_t* heap) /* in: memory heap where created */
|
|
{
|
|
undo_node_t* undo;
|
|
|
|
ut_ad(trx && parent && heap);
|
|
|
|
undo = mem_heap_alloc(heap, sizeof(undo_node_t));
|
|
|
|
undo->common.type = QUE_NODE_UNDO;
|
|
undo->common.parent = parent;
|
|
|
|
undo->state = UNDO_NODE_FETCH_NEXT;
|
|
undo->trx = trx;
|
|
|
|
btr_pcur_init(&(undo->pcur));
|
|
|
|
undo->heap = mem_heap_create(256);
|
|
|
|
return(undo);
|
|
}
|
|
|
|
/***************************************************************
|
|
Looks for the clustered index record when node has the row reference.
|
|
The pcur in node is used in the search. If found, stores the row to node,
|
|
and stores the position of pcur, and detaches it. The pcur must be closed
|
|
by the caller in any case. */
|
|
|
|
ibool
|
|
row_undo_search_clust_to_pcur(
|
|
/*==========================*/
|
|
/* out: TRUE if found; NOTE the node->pcur
|
|
must be closed by the caller, regardless of
|
|
the return value */
|
|
undo_node_t* node) /* in: row undo node */
|
|
{
|
|
dict_index_t* clust_index;
|
|
ibool found;
|
|
mtr_t mtr;
|
|
ibool ret;
|
|
rec_t* rec;
|
|
mem_heap_t* heap = NULL;
|
|
ulint offsets_[REC_OFFS_NORMAL_SIZE];
|
|
ulint* offsets = offsets_;
|
|
*offsets_ = (sizeof offsets_) / sizeof *offsets_;
|
|
|
|
mtr_start(&mtr);
|
|
|
|
clust_index = dict_table_get_first_index(node->table);
|
|
|
|
found = row_search_on_row_ref(&(node->pcur), BTR_MODIFY_LEAF,
|
|
node->table, node->ref, &mtr);
|
|
|
|
rec = btr_pcur_get_rec(&(node->pcur));
|
|
|
|
offsets = rec_get_offsets(rec, clust_index, offsets,
|
|
ULINT_UNDEFINED, &heap);
|
|
|
|
if (!found || 0 != ut_dulint_cmp(node->roll_ptr,
|
|
row_get_rec_roll_ptr(rec, clust_index, offsets))) {
|
|
|
|
/* We must remove the reservation on the undo log record
|
|
BEFORE releasing the latch on the clustered index page: this
|
|
is to make sure that some thread will eventually undo the
|
|
modification corresponding to node->roll_ptr. */
|
|
|
|
/* fputs("--------------------undoing a previous version\n",
|
|
stderr); */
|
|
|
|
ret = FALSE;
|
|
} else {
|
|
node->row = row_build(ROW_COPY_DATA, clust_index, rec,
|
|
offsets, node->heap);
|
|
btr_pcur_store_position(&(node->pcur), &mtr);
|
|
|
|
ret = TRUE;
|
|
}
|
|
|
|
btr_pcur_commit_specify_mtr(&(node->pcur), &mtr);
|
|
|
|
if (UNIV_LIKELY_NULL(heap)) {
|
|
mem_heap_free(heap);
|
|
}
|
|
return(ret);
|
|
}
|
|
|
|
/***************************************************************
|
|
Fetches an undo log record and does the undo for the recorded operation.
|
|
If none left, or a partial rollback completed, returns control to the
|
|
parent node, which is always a query thread node. */
|
|
static
|
|
ulint
|
|
row_undo(
|
|
/*=====*/
|
|
/* out: DB_SUCCESS if operation successfully
|
|
completed, else error code */
|
|
undo_node_t* node, /* in: row undo node */
|
|
que_thr_t* thr) /* in: query thread */
|
|
{
|
|
ulint err;
|
|
trx_t* trx;
|
|
dulint roll_ptr;
|
|
ibool froze_data_dict = FALSE;
|
|
|
|
ut_ad(node && thr);
|
|
|
|
trx = node->trx;
|
|
|
|
if (node->state == UNDO_NODE_FETCH_NEXT) {
|
|
|
|
node->undo_rec = trx_roll_pop_top_rec_of_trx(trx,
|
|
trx->roll_limit,
|
|
&roll_ptr,
|
|
node->heap);
|
|
if (!node->undo_rec) {
|
|
/* Rollback completed for this query thread */
|
|
|
|
thr->run_node = que_node_get_parent(node);
|
|
|
|
return(DB_SUCCESS);
|
|
}
|
|
|
|
node->roll_ptr = roll_ptr;
|
|
node->undo_no = trx_undo_rec_get_undo_no(node->undo_rec);
|
|
|
|
if (trx_undo_roll_ptr_is_insert(roll_ptr)) {
|
|
|
|
node->state = UNDO_NODE_INSERT;
|
|
} else {
|
|
node->state = UNDO_NODE_MODIFY;
|
|
}
|
|
|
|
} else if (node->state == UNDO_NODE_PREV_VERS) {
|
|
|
|
/* Undo should be done to the same clustered index record
|
|
again in this same rollback, restoring the previous version */
|
|
|
|
roll_ptr = node->new_roll_ptr;
|
|
|
|
node->undo_rec = trx_undo_get_undo_rec_low(roll_ptr,
|
|
node->heap);
|
|
node->roll_ptr = roll_ptr;
|
|
node->undo_no = trx_undo_rec_get_undo_no(node->undo_rec);
|
|
|
|
if (trx_undo_roll_ptr_is_insert(roll_ptr)) {
|
|
|
|
node->state = UNDO_NODE_INSERT;
|
|
} else {
|
|
node->state = UNDO_NODE_MODIFY;
|
|
}
|
|
}
|
|
|
|
/* Prevent DROP TABLE etc. while we are rolling back this row.
|
|
If we are doing a TABLE CREATE or some other dictionary operation,
|
|
then we already have dict_operation_lock locked in x-mode. Do not
|
|
try to lock again in s-mode, because that would cause a hang. */
|
|
|
|
if (trx->dict_operation_lock_mode == 0) {
|
|
|
|
row_mysql_freeze_data_dictionary(trx);
|
|
|
|
froze_data_dict = TRUE;
|
|
}
|
|
|
|
if (node->state == UNDO_NODE_INSERT) {
|
|
|
|
err = row_undo_ins(node);
|
|
|
|
node->state = UNDO_NODE_FETCH_NEXT;
|
|
} else {
|
|
ut_ad(node->state == UNDO_NODE_MODIFY);
|
|
err = row_undo_mod(node, thr);
|
|
}
|
|
|
|
if (froze_data_dict) {
|
|
|
|
row_mysql_unfreeze_data_dictionary(trx);
|
|
}
|
|
|
|
/* Do some cleanup */
|
|
btr_pcur_close(&(node->pcur));
|
|
|
|
mem_heap_empty(node->heap);
|
|
|
|
thr->run_node = node;
|
|
|
|
return(err);
|
|
}
|
|
|
|
/***************************************************************
|
|
Undoes a row operation in a table. This is a high-level function used
|
|
in SQL execution graphs. */
|
|
|
|
que_thr_t*
|
|
row_undo_step(
|
|
/*==========*/
|
|
/* out: query thread to run next or NULL */
|
|
que_thr_t* thr) /* in: query thread */
|
|
{
|
|
ulint err;
|
|
undo_node_t* node;
|
|
trx_t* trx;
|
|
|
|
ut_ad(thr);
|
|
|
|
srv_activity_count++;
|
|
|
|
trx = thr_get_trx(thr);
|
|
|
|
node = thr->run_node;
|
|
|
|
ut_ad(que_node_get_type(node) == QUE_NODE_UNDO);
|
|
|
|
err = row_undo(node, thr);
|
|
|
|
trx->error_state = err;
|
|
|
|
if (err != DB_SUCCESS) {
|
|
/* SQL error detected */
|
|
|
|
fprintf(stderr, "InnoDB: Fatal error %lu in rollback.\n",
|
|
(ulong) err);
|
|
|
|
if (err == DB_OUT_OF_FILE_SPACE) {
|
|
fprintf(stderr,
|
|
"InnoDB: Error 13 means out of tablespace.\n"
|
|
"InnoDB: Consider increasing your tablespace.\n");
|
|
|
|
exit(1);
|
|
}
|
|
|
|
ut_error;
|
|
|
|
return(NULL);
|
|
}
|
|
|
|
return(thr);
|
|
}
|