Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
d9edc3fb
Commit
d9edc3fb
authored
Dec 08, 2013
by
Rich Prohaska
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#150 cleanup indexing cursor when a txn is retired
parent
7d843822
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
104 additions
and
1 deletion
+104
-1
mysql-test/suite/tokudb.bugs/r/commit_index_end_1.result
mysql-test/suite/tokudb.bugs/r/commit_index_end_1.result
+15
-0
mysql-test/suite/tokudb.bugs/r/commit_index_end_2.result
mysql-test/suite/tokudb.bugs/r/commit_index_end_2.result
+5
-0
mysql-test/suite/tokudb.bugs/t/commit_index_end_1.test
mysql-test/suite/tokudb.bugs/t/commit_index_end_1.test
+23
-0
mysql-test/suite/tokudb.bugs/t/commit_index_end_2.test
mysql-test/suite/tokudb.bugs/t/commit_index_end_2.test
+14
-0
storage/tokudb/ha_tokudb.cc
storage/tokudb/ha_tokudb.cc
+27
-1
storage/tokudb/ha_tokudb.h
storage/tokudb/ha_tokudb.h
+9
-0
storage/tokudb/hatoku_defines.h
storage/tokudb/hatoku_defines.h
+1
-0
storage/tokudb/hatoku_hton.cc
storage/tokudb/hatoku_hton.cc
+10
-0
No files found.
mysql-test/suite/tokudb.bugs/r/commit_index_end_1.result
0 → 100644
View file @
d9edc3fb
drop table if exists t1,t2,t3;
SET NAMES latin1;
CREATE TABLE t1 (a INT) ENGINE=TokuDB;
INSERT INTO t1 VALUES (1),(2);
CREATE TABLE t2 (b INT) ENGINE=TokuDB;
INSERT INTO t2 VALUES (3),(4);
CREATE TABLE t3 (c VARCHAR(3), INDEX(c)) ENGINE=TokuDB;
INSERT INTO t3 VALUES ('foo'),('bar');
EXPLAIN SELECT * FROM t1
WHERE a IN ( SELECT b FROM t2 ) OR ( 'qux' ) IN ( SELECT c FROM t3 );
id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY t1 ALL NULL NULL NULL NULL 2 Using where
3 SUBQUERY t3 index_subquery c c 6 const 0 Using index; Using where
2 MATERIALIZED t2 ALL NULL NULL NULL NULL 2
drop table if exists t1,t2,t3;
mysql-test/suite/tokudb.bugs/r/commit_index_end_2.result
0 → 100644
View file @
d9edc3fb
drop table if exists t1,t2;
CREATE TABLE t1 (a VARCHAR(8), INDEX(a)) ENGINE=TokuDB;
INSERT INTO t1 VALUES ('foo'),('bar');
CREATE TABLE t2 AS SELECT ( 'qux' ) IN ( SELECT a FROM t1 ) AS f1;
drop table t1,t2;
mysql-test/suite/tokudb.bugs/t/commit_index_end_1.test
0 → 100644
View file @
d9edc3fb
# this test crashes because tokudb does not handle index_end after txn commit (MDEV-5396)
source
include
/
have_tokudb
.
inc
;
disable_warnings
;
drop
table
if
exists
t1
,
t2
,
t3
;
enable_warnings
;
SET
NAMES
latin1
;
CREATE
TABLE
t1
(
a
INT
)
ENGINE
=
TokuDB
;
INSERT
INTO
t1
VALUES
(
1
),(
2
);
CREATE
TABLE
t2
(
b
INT
)
ENGINE
=
TokuDB
;
INSERT
INTO
t2
VALUES
(
3
),(
4
);
CREATE
TABLE
t3
(
c
VARCHAR
(
3
),
INDEX
(
c
))
ENGINE
=
TokuDB
;
INSERT
INTO
t3
VALUES
(
'foo'
),(
'bar'
);
EXPLAIN
SELECT
*
FROM
t1
WHERE
a
IN
(
SELECT
b
FROM
t2
)
OR
(
'qux'
)
IN
(
SELECT
c
FROM
t3
);
drop
table
if
exists
t1
,
t2
,
t3
;
\ No newline at end of file
mysql-test/suite/tokudb.bugs/t/commit_index_end_2.test
0 → 100644
View file @
d9edc3fb
# this test crashes because tokudb does not handle index_end after txn commit (MDEV-5396)
source
include
/
have_tokudb
.
inc
;
disable_warnings
;
drop
table
if
exists
t1
,
t2
;
enable_warnings
;
CREATE
TABLE
t1
(
a
VARCHAR
(
8
),
INDEX
(
a
))
ENGINE
=
TokuDB
;
INSERT
INTO
t1
VALUES
(
'foo'
),(
'bar'
);
CREATE
TABLE
t2
AS
SELECT
(
'qux'
)
IN
(
SELECT
a
FROM
t1
)
AS
f1
;
drop
table
t1
,
t2
;
storage/tokudb/ha_tokudb.cc
View file @
d9edc3fb
...
...
@@ -1240,6 +1240,7 @@ ha_tokudb::ha_tokudb(handlerton * hton, TABLE_SHARE * table_arg):handler(hton, t
prelocked_right_range_size
=
0
;
tokudb_active_index
=
MAX_KEY
;
invalidate_icp
();
trx_handler_list
.
data
=
this
;
}
ha_tokudb
::~
ha_tokudb
()
{
...
...
@@ -4436,6 +4437,7 @@ cleanup:
int
r
=
cursor
->
c_close
(
cursor
);
assert
(
r
==
0
);
cursor
=
NULL
;
remove_from_trx_handler_list
();
}
}
return
error
;
...
...
@@ -4480,6 +4482,7 @@ int ha_tokudb::index_init(uint keynr, bool sorted) {
DBUG_PRINT
(
"note"
,
(
"Closing active cursor"
));
int
r
=
cursor
->
c_close
(
cursor
);
assert
(
r
==
0
);
remove_from_trx_handler_list
();
}
active_index
=
keynr
;
...
...
@@ -4517,6 +4520,8 @@ int ha_tokudb::index_init(uint keynr, bool sorted) {
}
memset
((
void
*
)
&
last_key
,
0
,
sizeof
(
last_key
));
add_to_trx_handler_list
();
if
(
thd_sql_command
(
thd
)
==
SQLCOM_SELECT
)
{
set_query_columns
(
keynr
);
unpack_entire_row
=
false
;
...
...
@@ -4542,6 +4547,7 @@ int ha_tokudb::index_end() {
int
r
=
cursor
->
c_close
(
cursor
);
assert
(
r
==
0
);
cursor
=
NULL
;
remove_from_trx_handler_list
();
last_cursor_error
=
0
;
}
active_index
=
tokudb_active_index
=
MAX_KEY
;
...
...
@@ -5546,7 +5552,7 @@ int ha_tokudb::rnd_end() {
// error otherwise
//
int
ha_tokudb
::
rnd_next
(
uchar
*
buf
)
{
TOKUDB_DBUG_ENTER
(
"ha_tokudb::
ha_tokudb::
rnd_next"
);
TOKUDB_DBUG_ENTER
(
"ha_tokudb::rnd_next"
);
ha_statistic_increment
(
&
SSV
::
ha_read_rnd_next_count
);
int
error
=
get_next
(
buf
,
1
,
NULL
);
TOKUDB_DBUG_RETURN
(
error
);
...
...
@@ -5706,6 +5712,7 @@ int ha_tokudb::prelock_range( const key_range *start_key, const key_range *end_k
int
r
=
cursor
->
c_close
(
cursor
);
assert
(
r
==
0
);
cursor
=
NULL
;
remove_from_trx_handler_list
();
}
goto
cleanup
;
}
...
...
@@ -8254,6 +8261,25 @@ Item* ha_tokudb::idx_cond_push(uint keyno_arg, Item* idx_cond_arg) {
return
idx_cond_arg
;
}
void
ha_tokudb
::
cleanup_txn
(
DB_TXN
*
txn
)
{
if
(
transaction
==
txn
&&
cursor
)
{
int
r
=
cursor
->
c_close
(
cursor
);
assert
(
r
==
0
);
cursor
=
NULL
;
remove_from_trx_handler_list
();
}
}
void
ha_tokudb
::
add_to_trx_handler_list
()
{
tokudb_trx_data
*
trx
=
(
tokudb_trx_data
*
)
thd_data_get
(
ha_thd
(),
tokudb_hton
->
slot
);
trx
->
handlers
=
list_add
(
trx
->
handlers
,
&
trx_handler_list
);
}
void
ha_tokudb
::
remove_from_trx_handler_list
()
{
tokudb_trx_data
*
trx
=
(
tokudb_trx_data
*
)
thd_data_get
(
ha_thd
(),
tokudb_hton
->
slot
);
trx
->
handlers
=
list_delete
(
trx
->
handlers
,
&
trx_handler_list
);
}
// table admin
#include "ha_tokudb_admin.cc"
...
...
storage/tokudb/ha_tokudb.h
View file @
d9edc3fb
...
...
@@ -787,6 +787,15 @@ private:
bool
check_upsert
(
THD
*
thd
,
List
<
Item
>
&
update_fields
,
List
<
Item
>
&
update_values
);
int
send_upsert_message
(
THD
*
thd
,
List
<
Item
>
&
update_fields
,
List
<
Item
>
&
update_values
,
DB_TXN
*
txn
);
#endif
public:
// mysql sometimes retires a txn before a cursor that references the txn is closed.
// for example, commit is sometimes called before index_end. the following methods
// put the handler on a list of handlers that get cleaned up when the txn is retired.
void
cleanup_txn
(
DB_TXN
*
txn
);
private:
LIST
trx_handler_list
;
void
add_to_trx_handler_list
();
void
remove_from_trx_handler_list
();
};
#if defined(MARIADB_BASE_VERSION)
...
...
storage/tokudb/hatoku_defines.h
View file @
d9edc3fb
...
...
@@ -304,6 +304,7 @@ typedef struct st_tokudb_trx_data {
uint
tokudb_lock_count
;
tokudb_stmt_progress
stmt_progress
;
bool
checkpoint_lock_taken
;
LIST
*
handlers
;
}
tokudb_trx_data
;
extern
char
*
tokudb_data_dir
;
...
...
storage/tokudb/hatoku_hton.cc
View file @
d9edc3fb
...
...
@@ -644,6 +644,14 @@ static void abort_txn_with_progress(DB_TXN* txn, THD* thd) {
assert
(
r
==
0
);
}
static
void
tokudb_cleanup_handlers
(
tokudb_trx_data
*
trx
,
DB_TXN
*
txn
)
{
LIST
*
e
;
while
((
e
=
trx
->
handlers
))
{
ha_tokudb
*
handler
=
(
ha_tokudb
*
)
e
->
data
;
handler
->
cleanup_txn
(
txn
);
}
}
static
int
tokudb_commit
(
handlerton
*
hton
,
THD
*
thd
,
bool
all
)
{
TOKUDB_DBUG_ENTER
(
"tokudb_commit"
);
DBUG_PRINT
(
"trans"
,
(
"ending transaction %s"
,
all
?
"all"
:
"stmt"
));
...
...
@@ -657,6 +665,7 @@ static int tokudb_commit(handlerton * hton, THD * thd, bool all) {
}
// test hook to induce a crash on a debug build
DBUG_EXECUTE_IF
(
"tokudb_crash_commit_before"
,
DBUG_SUICIDE
(););
tokudb_cleanup_handlers
(
trx
,
this_txn
);
commit_txn_with_progress
(
this_txn
,
syncflag
,
thd
);
// test hook to induce a crash on a debug build
DBUG_EXECUTE_IF
(
"tokudb_crash_commit_after"
,
DBUG_SUICIDE
(););
...
...
@@ -683,6 +692,7 @@ static int tokudb_rollback(handlerton * hton, THD * thd, bool all) {
if
(
tokudb_debug
&
TOKUDB_DEBUG_TXN
)
{
TOKUDB_TRACE
(
"rollback %u %p
\n
"
,
all
,
this_txn
);
}
tokudb_cleanup_handlers
(
trx
,
this_txn
);
abort_txn_with_progress
(
this_txn
,
thd
);
if
(
this_txn
==
trx
->
sp_level
)
{
trx
->
sp_level
=
0
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment