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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
a85d942b
Commit
a85d942b
authored
Jan 27, 2022
by
Monty
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed result file for rocksdb.i_s_deadlock
This failed because of MDEV-18918 which removed DEFAULT's
parent
2f5d6ef0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
storage/rocksdb/mysql-test/rocksdb/r/i_s_deadlock.result
storage/rocksdb/mysql-test/rocksdb/r/i_s_deadlock.result
+9
-9
No files found.
storage/rocksdb/mysql-test/rocksdb/r/i_s_deadlock.result
View file @
a85d942b
...
...
@@ -13,15 +13,15 @@ connection default;
show create table information_schema.rocksdb_deadlock;
Table Create Table
ROCKSDB_DEADLOCK CREATE TEMPORARY TABLE `ROCKSDB_DEADLOCK` (
`DEADLOCK_ID` bigint(8) NOT NULL
DEFAULT 0
,
`TIMESTAMP` bigint(8) NOT NULL
DEFAULT 0
,
`TRANSACTION_ID` bigint(8) NOT NULL
DEFAULT 0
,
`CF_NAME` varchar(193) NOT NULL
DEFAULT ''
,
`WAITING_KEY` varchar(513) NOT NULL
DEFAULT ''
,
`LOCK_TYPE` varchar(193) NOT NULL
DEFAULT ''
,
`INDEX_NAME` varchar(193) NOT NULL
DEFAULT ''
,
`TABLE_NAME` varchar(193) NOT NULL
DEFAULT ''
,
`ROLLED_BACK` bigint(8) NOT NULL
DEFAULT 0
`DEADLOCK_ID` bigint(8) NOT NULL,
`TIMESTAMP` bigint(8) NOT NULL,
`TRANSACTION_ID` bigint(8) NOT NULL,
`CF_NAME` varchar(193) NOT NULL,
`WAITING_KEY` varchar(513) NOT NULL,
`LOCK_TYPE` varchar(193) NOT NULL,
`INDEX_NAME` varchar(193) NOT NULL,
`TABLE_NAME` varchar(193) NOT NULL,
`ROLLED_BACK` bigint(8) NOT NULL
) ENGINE=MEMORY DEFAULT CHARSET=utf8
create table t (i int primary key) engine=rocksdb;
insert into t values (1), (2), (3);
...
...
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