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
f704ecb9
Commit
f704ecb9
authored
Aug 27, 2014
by
Rich Prohaska
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DB-712 split locks and lock_waits dname into schema, table, and dictionary
parent
aed2c264
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
storage/tokudb/hatoku_hton.cc
storage/tokudb/hatoku_hton.cc
+19
-0
No files found.
storage/tokudb/hatoku_hton.cc
View file @
f704ecb9
...
...
@@ -2074,6 +2074,9 @@ static ST_FIELD_INFO tokudb_lock_waits_field_info[] = {
{
"lock_waits_key_left"
,
256
,
MYSQL_TYPE_STRING
,
0
,
0
,
NULL
,
SKIP_OPEN_TABLE
},
{
"lock_waits_key_right"
,
256
,
MYSQL_TYPE_STRING
,
0
,
0
,
NULL
,
SKIP_OPEN_TABLE
},
{
"lock_waits_start_time"
,
0
,
MYSQL_TYPE_LONGLONG
,
0
,
0
,
NULL
,
SKIP_OPEN_TABLE
},
{
"lock_waits_table_schema"
,
256
,
MYSQL_TYPE_STRING
,
0
,
0
,
NULL
,
SKIP_OPEN_TABLE
},
{
"lock_waits_table_name"
,
256
,
MYSQL_TYPE_STRING
,
0
,
0
,
NULL
,
SKIP_OPEN_TABLE
},
{
"lock_waits_table_dictionary_name"
,
256
,
MYSQL_TYPE_STRING
,
0
,
0
,
NULL
,
SKIP_OPEN_TABLE
},
{
NULL
,
0
,
MYSQL_TYPE_NULL
,
0
,
0
,
NULL
,
SKIP_OPEN_TABLE
}
};
...
...
@@ -2099,6 +2102,13 @@ static int tokudb_lock_waits_callback(DB *db, uint64_t requesting_txnid, const D
tokudb_pretty_right_key
(
db
,
right_key
,
&
right_str
);
table
->
field
[
4
]
->
store
(
right_str
.
ptr
(),
right_str
.
length
(),
system_charset_info
);
table
->
field
[
5
]
->
store
(
start_time
,
false
);
String
database_name
,
table_name
,
dictionary_name
;
tokudb_split_dname
(
dname
,
database_name
,
table_name
,
dictionary_name
);
table
->
field
[
6
]
->
store
(
database_name
.
c_ptr
(),
database_name
.
length
(),
system_charset_info
);
table
->
field
[
7
]
->
store
(
table_name
.
c_ptr
(),
table_name
.
length
(),
system_charset_info
);
table
->
field
[
8
]
->
store
(
dictionary_name
.
c_ptr
(),
dictionary_name
.
length
(),
system_charset_info
);
int
error
=
schema_table_store_record
(
thd
,
table
);
return
error
;
}
...
...
@@ -2144,6 +2154,9 @@ static ST_FIELD_INFO tokudb_locks_field_info[] = {
{
"locks_dname"
,
256
,
MYSQL_TYPE_STRING
,
0
,
0
,
NULL
,
SKIP_OPEN_TABLE
},
{
"locks_key_left"
,
256
,
MYSQL_TYPE_STRING
,
0
,
0
,
NULL
,
SKIP_OPEN_TABLE
},
{
"locks_key_right"
,
256
,
MYSQL_TYPE_STRING
,
0
,
0
,
NULL
,
SKIP_OPEN_TABLE
},
{
"locks_table_schema"
,
256
,
MYSQL_TYPE_STRING
,
0
,
0
,
NULL
,
SKIP_OPEN_TABLE
},
{
"locks_table_name"
,
256
,
MYSQL_TYPE_STRING
,
0
,
0
,
NULL
,
SKIP_OPEN_TABLE
},
{
"locks_table_dictionary_name"
,
256
,
MYSQL_TYPE_STRING
,
0
,
0
,
NULL
,
SKIP_OPEN_TABLE
},
{
NULL
,
0
,
MYSQL_TYPE_NULL
,
0
,
0
,
NULL
,
SKIP_OPEN_TABLE
}
};
...
...
@@ -2175,6 +2188,12 @@ static int tokudb_locks_callback(uint64_t txn_id, uint64_t client_id, iterate_ro
tokudb_pretty_right_key
(
db
,
&
right_key
,
&
right_str
);
table
->
field
[
4
]
->
store
(
right_str
.
ptr
(),
right_str
.
length
(),
system_charset_info
);
String
database_name
,
table_name
,
dictionary_name
;
tokudb_split_dname
(
dname
,
database_name
,
table_name
,
dictionary_name
);
table
->
field
[
5
]
->
store
(
database_name
.
c_ptr
(),
database_name
.
length
(),
system_charset_info
);
table
->
field
[
6
]
->
store
(
table_name
.
c_ptr
(),
table_name
.
length
(),
system_charset_info
);
table
->
field
[
7
]
->
store
(
dictionary_name
.
c_ptr
(),
dictionary_name
.
length
(),
system_charset_info
);
error
=
schema_table_store_record
(
thd
,
table
);
}
return
error
;
...
...
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