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
57635880
Commit
57635880
authored
Sep 27, 2013
by
Rich Prohaska
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#104 default capture lock timeout conflict info into tokudb_last_lock_timeout variable
parent
0a8fa2e7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
storage/tokudb/hatoku_hton.h
storage/tokudb/hatoku_hton.h
+3
-4
No files found.
storage/tokudb/hatoku_hton.h
View file @
57635880
...
...
@@ -330,14 +330,13 @@ static MYSQL_THDVAR_ENUM(row_format, PLUGIN_VAR_OPCMDARG,
"TOKUDB_LZMA, TOKUDB_FAST, TOKUDB_SMALL and TOKUDB_DEFAULT"
,
NULL
,
NULL
,
SRV_ROW_FORMAT_DEFAULT
,
&
tokudb_row_format_typelib
);
static
srv_row_format_t
get_row_format
(
THD
*
thd
)
{
static
srv_row_format_t
get_row_format
(
THD
*
thd
)
{
return
(
srv_row_format_t
)
THDVAR
(
thd
,
row_format
);
}
static
MYSQL_THDVAR_UINT
(
lock_timeout_debug
,
0
,
"TokuDB lock timeout debug"
,
NULL
,
NULL
,
0
,
0
,
~
0U
,
1
);
static
MYSQL_THDVAR_UINT
(
lock_timeout_debug
,
0
,
"TokuDB lock timeout debug"
,
NULL
/*check*/
,
NULL
/*update*/
,
1
/*default*/
,
0
/*min*/
,
~
0U
/*max*/
,
1
);
static
MYSQL_THDVAR_STR
(
last_lock_timeout
,
PLUGIN_VAR_MEMALLOC
,
"last TokuDB lock timeout"
,
NULL
,
NULL
,
NULL
);
static
MYSQL_THDVAR_STR
(
last_lock_timeout
,
PLUGIN_VAR_MEMALLOC
,
"last TokuDB lock timeout"
,
NULL
/*check*/
,
NULL
/*update*/
,
NULL
/*default*/
);
extern
HASH
tokudb_open_tables
;
extern
pthread_mutex_t
tokudb_mutex
;
...
...
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