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
80333ad8
Commit
80333ad8
authored
May 20, 2015
by
Jan Lindström
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing requirement to test case and remove unnecessary output.
parent
bb15b9e2
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
320 deletions
+11
-320
mysql-test/suite/encryption/r/encryption_create_or_replace.result
...st/suite/encryption/r/encryption_create_or_replace.result
+0
-320
mysql-test/suite/encryption/t/encryption_create_or_replace.test
...test/suite/encryption/t/encryption_create_or_replace.test
+11
-0
No files found.
mysql-test/suite/encryption/r/encryption_create_or_replace.result
View file @
80333ad8
This diff is collapsed.
Click to expand it.
mysql-test/suite/encryption/t/encryption_create_or_replace.test
View file @
80333ad8
--
source
include
/
have_innodb
.
inc
--
source
include
/
have_file_key_management_plugin
.
inc
--
source
include
/
not_embedded
.
inc
#
# MDEV-8164: Server crashes in pfs_mutex_enter_func after fil_crypt_is_closing or alike
...
...
@@ -8,6 +10,10 @@ SET default_storage_engine = InnoDB;
CREATE
TABLE
t1
(
pk
INT
PRIMARY
KEY
,
c
VARCHAR
(
256
));
CREATE
TABLE
t2
AS
SELECT
*
FROM
t1
;
--
disable_abort_on_error
--
disable_warnings
--
disable_query_log
let
$i
=
40
;
while
(
$i
)
{
...
...
@@ -21,5 +27,10 @@ CREATE OR REPLACE TABLE t2 AS SELECT * FROM t1;
CREATE
OR
REPLACE
TABLE
t1
AS
SELECT
*
FROM
t2
;
dec
$i
;
}
--
enable_abort_on_error
--
enable_warnings
--
enable_query_log
drop
table
t1
,
t2
;
SET
GLOBAL
innodb_encryption_threads
=
0
;
\ No newline at end of file
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