mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 21:42:35 +01:00
6dfc85f0f7
Additional fixes in 5.5: ibuf_set_del_mark(): Add diagnostics when setting a buffered delete-mark fails. ibuf_delete(): Correct a misleading comment about non-found records. rec_print(): Add a const qualifier to the index parameter. Bug #56680 wrong InnoDB results from a case-insensitive covering index row_search_for_mysql(): When a secondary index record might not be visible in the current transaction's read view and we consult the clustered index and optionally some undo log records, return the relevant columns of the clustered index record to MySQL instead of the secondary index record. ibuf_insert_to_index_page_low(): New function, refactored from ibuf_insert_to_index_page(). ibuf_insert_to_index_page(): When we are inserting a record in place of a delete-marked record and some fields of the record differ, update that record just like row_ins_sec_index_entry_by_modify() would do. btr_cur_update_alloc_zip(): Make the function public. mysql_row_templ_t: Add clust_rec_field_no. row_sel_store_mysql_rec(), row_sel_push_cache_row_for_mysql(): Add the flag rec_clust, for returning data at clust_rec_field_no instead of rec_field_no. Resurrect the debug assertion that the record not be marked for deletion. (Bug #55626) [UNIV_DEBUG || UNIV_IBUF_DEBUG] ibuf_debug, buf_page_get_gen(), buf_flush_page_try(): Implement innodb_change_buffering_debug=1 for evicting pages from the buffer pool, so that change buffering will be attempted more frequently.
109 lines
2.3 KiB
Text
109 lines
2.3 KiB
Text
SET GLOBAL tx_isolation='REPEATABLE-READ';
|
|
SET GLOBAL innodb_file_format=Barracuda;
|
|
SET GLOBAL innodb_file_per_table=on;
|
|
CREATE TABLE bug56680(
|
|
a INT AUTO_INCREMENT PRIMARY KEY,
|
|
b CHAR(1),
|
|
c INT,
|
|
INDEX(b))
|
|
ENGINE=InnoDB;
|
|
INSERT INTO bug56680 VALUES(0,'x',1);
|
|
BEGIN;
|
|
SELECT b FROM bug56680;
|
|
b
|
|
x
|
|
BEGIN;
|
|
UPDATE bug56680 SET b='X';
|
|
SELECT b FROM bug56680;
|
|
b
|
|
x
|
|
SELECT * FROM bug56680;
|
|
a b c
|
|
1 x 1
|
|
ROLLBACK;
|
|
SELECT b FROM bug56680;
|
|
b
|
|
x
|
|
SET GLOBAL tx_isolation='READ-UNCOMMITTED';
|
|
INSERT INTO bug56680 SELECT 0,b,c FROM bug56680;
|
|
INSERT INTO bug56680 SELECT 0,b,c FROM bug56680;
|
|
INSERT INTO bug56680 SELECT 0,b,c FROM bug56680;
|
|
INSERT INTO bug56680 SELECT 0,b,c FROM bug56680;
|
|
INSERT INTO bug56680 SELECT 0,b,c FROM bug56680;
|
|
INSERT INTO bug56680 SELECT 0,b,c FROM bug56680;
|
|
INSERT INTO bug56680 SELECT 0,b,c FROM bug56680;
|
|
INSERT INTO bug56680 SELECT 0,b,c FROM bug56680;
|
|
INSERT INTO bug56680 SELECT 0,b,c FROM bug56680;
|
|
INSERT INTO bug56680 SELECT 0,b,c FROM bug56680;
|
|
INSERT INTO bug56680 SELECT 0,b,c FROM bug56680;
|
|
BEGIN;
|
|
SELECT b FROM bug56680 LIMIT 2;
|
|
b
|
|
x
|
|
x
|
|
BEGIN;
|
|
DELETE FROM bug56680 WHERE a=1;
|
|
INSERT INTO bug56680 VALUES(1,'X',1);
|
|
SELECT b FROM bug56680 LIMIT 3;
|
|
b
|
|
X
|
|
x
|
|
x
|
|
SELECT b FROM bug56680 LIMIT 2;
|
|
b
|
|
x
|
|
x
|
|
CHECK TABLE bug56680;
|
|
Table Op Msg_type Msg_text
|
|
test.bug56680 check status OK
|
|
ROLLBACK;
|
|
SELECT b FROM bug56680 LIMIT 2;
|
|
b
|
|
x
|
|
x
|
|
CHECK TABLE bug56680;
|
|
Table Op Msg_type Msg_text
|
|
test.bug56680 check status OK
|
|
SELECT b FROM bug56680 LIMIT 2;
|
|
b
|
|
x
|
|
x
|
|
CREATE TABLE bug56680_2(
|
|
a INT AUTO_INCREMENT PRIMARY KEY,
|
|
b VARCHAR(2) CHARSET latin1 COLLATE latin1_german2_ci,
|
|
c INT,
|
|
INDEX(b))
|
|
ENGINE=InnoDB;
|
|
INSERT INTO bug56680_2 SELECT 0,_latin1 0xdf,c FROM bug56680;
|
|
BEGIN;
|
|
SELECT HEX(b) FROM bug56680_2 LIMIT 2;
|
|
HEX(b)
|
|
DF
|
|
DF
|
|
DELETE FROM bug56680_2 WHERE a=1;
|
|
INSERT INTO bug56680_2 VALUES(1,'SS',1);
|
|
SELECT HEX(b) FROM bug56680_2 LIMIT 3;
|
|
HEX(b)
|
|
5353
|
|
DF
|
|
DF
|
|
CHECK TABLE bug56680_2;
|
|
Table Op Msg_type Msg_text
|
|
test.bug56680_2 check status OK
|
|
ALTER TABLE bug56680_2 ROW_FORMAT=COMPRESSED KEY_BLOCK_SIZE=1;
|
|
SELECT HEX(b) FROM bug56680_2 LIMIT 2;
|
|
HEX(b)
|
|
5353
|
|
DF
|
|
DELETE FROM bug56680_2 WHERE a=1;
|
|
INSERT INTO bug56680_2 VALUES(1,_latin1 0xdf,1);
|
|
SELECT HEX(b) FROM bug56680_2 LIMIT 3;
|
|
HEX(b)
|
|
DF
|
|
DF
|
|
DF
|
|
CHECK TABLE bug56680_2;
|
|
Table Op Msg_type Msg_text
|
|
test.bug56680_2 check status OK
|
|
DROP TABLE bug56680_2;
|
|
DROP TABLE bug56680;
|