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
eafa2a14
Commit
eafa2a14
authored
Dec 09, 2021
by
forkfun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
enable partition_open_files_limit test
parent
f974062c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
8 deletions
+5
-8
mysql-test/disabled.def
mysql-test/disabled.def
+0
-1
mysql-test/r/partition_open_files_limit.result
mysql-test/r/partition_open_files_limit.result
+2
-0
mysql-test/suite/binlog/t/binlog_sf.test
mysql-test/suite/binlog/t/binlog_sf.test
+2
-6
mysql-test/t/compound.test
mysql-test/t/compound.test
+1
-1
No files found.
mysql-test/disabled.def
View file @
eafa2a14
...
...
@@ -16,4 +16,3 @@ mysql_embedded : Bug#12561297 2011-05-14 Anitha Dependent on PB2 chang
#show_explain : Psergey: random timeout in range-checked-for-each record query.
file_contents : MDEV-6526 these files are not installed anymore
max_statement_time : cannot possibly work, depends on timing
partition_open_files_limit : open_files_limit check broken by MDEV-18360
mysql-test/r/partition_open_files_limit.result
View file @
eafa2a14
DROP TABLE IF EXISTS `t1`;
call mtr.add_suppression("option 'table_open_cache'");
call mtr.add_suppression("option 'max_connections'");
# Bug#46922: crash when adding partitions and open_files_limit is reached
CREATE TABLE t1 (a INT PRIMARY KEY)
ENGINE=MyISAM PARTITION BY KEY () PARTITIONS 1;
...
...
mysql-test/suite/binlog/t/binlog_sf.test
View file @
eafa2a14
--
source
include
/
have_log_bin
.
inc
# We change binlog format inside the test, so no need to re-run with
# more than one binlog_format.
...
...
@@ -9,13 +8,9 @@
# save status
let
$oblf
=
`select @@SESSION.BINLOG_FORMAT`
;
let
$otfc
=
`select @@log_bin_trust_function_creators`
;
set
global
log_bin_trust_function_creators
=
0
;
# fail *on definition*
set
binlog_format
=
STATEMENT
;
...
...
@@ -186,6 +181,7 @@ drop function fn16456;
# restore status
--
disable_query_log
eval
set
binlog_format
=
$oblf
;
set
binlog_format
=
STATEMENT
;
eval
set
global
log_bin_trust_function_creators
=
$otfc
;
reset
master
;
--
enable_query_log
mysql-test/t/compound.test
View file @
eafa2a14
#
# MDEV-5317 Compound statement / anonymous blocks
#
source
include
/
have_
log_bin
.
inc
;
source
include
/
have_
binlog_format_mixed_or_statement
.
inc
;
delimiter
|
;
CREATE
TABLE
t1
(
a
INT
PRIMARY
KEY
)
|
...
...
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