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
813af4cd
Commit
813af4cd
authored
Jan 16, 2015
by
Jan Lindström
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix try for Buildbot test failure for tests
innodb_bug12400341 innodb-mdev7046 innodb_stats_fetch_nonexistent
parent
26a8a95c
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
2 deletions
+9
-2
mysql-test/suite/innodb/r/innodb_bug12400341.result
mysql-test/suite/innodb/r/innodb_bug12400341.result
+1
-1
mysql-test/suite/innodb/r/innodb_stats_fetch_nonexistent.result
...test/suite/innodb/r/innodb_stats_fetch_nonexistent.result
+1
-0
mysql-test/suite/innodb/t/innodb-mdev7046.test
mysql-test/suite/innodb/t/innodb-mdev7046.test
+1
-0
mysql-test/suite/innodb/t/innodb_bug12400341.test
mysql-test/suite/innodb/t/innodb_bug12400341.test
+4
-1
mysql-test/suite/innodb/t/innodb_stats_fetch_nonexistent.test
...l-test/suite/innodb/t/innodb_stats_fetch_nonexistent.test
+2
-0
No files found.
mysql-test/suite/innodb/r/innodb_bug12400341.result
View file @
813af4cd
call mtr.add_suppression("InnoDB: Warning: cannot find a free slot for an undo log. Do you have too");
call mtr.add_suppression("InnoDB: Warning: cannot find a free slot for an undo log. Do you have too
*
");
set @old_innodb_undo_logs = @@innodb_undo_logs;
set global innodb_undo_logs=1;
show variables like "max_connections";
...
...
mysql-test/suite/innodb/r/innodb_stats_fetch_nonexistent.result
View file @
813af4cd
call mtr.add_suppression("InnoDB: Error: Fetch of persistent statistics requested for table*");
CREATE TABLE test_ps_fetch_nonexistent
(a INT, PRIMARY KEY (a))
ENGINE=INNODB STATS_PERSISTENT=1;
...
...
mysql-test/suite/innodb/t/innodb-mdev7046.test
View file @
813af4cd
...
...
@@ -9,6 +9,7 @@
# Ignore OS errors
call
mtr
.
add_suppression
(
"InnoDB: File ./test/t1*"
);
call
mtr
.
add_suppression
(
"InnoDB: Error number*"
);
call
mtr
.
add_suppression
(
"InnoDB: File ./test/t1#p#p1#sp#p1sp0.ibd: 'rename' returned OS error*"
);
# MDEV-7046: MySQL#74480 - Failing assertion: os_file_status(newpath, &exists, &type)
# after Operating system error number 36 in a file operation
...
...
mysql-test/suite/innodb/t/innodb_bug12400341.test
View file @
813af4cd
...
...
@@ -11,7 +11,10 @@ if (`select count(*)=0 from information_schema.global_variables where variable_n
# and cause unstable result.
--
source
include
/
not_valgrind
.
inc
call
mtr
.
add_suppression
(
"InnoDB: Warning: cannot find a free slot for an undo log. Do you have too"
);
# Previous undo slots cause unnecessary failures
--
source
include
/
not_windows
.
inc
call
mtr
.
add_suppression
(
"InnoDB: Warning: cannot find a free slot for an undo log. Do you have too*"
);
--
disable_query_log
set
@
old_innodb_trx_rseg_n_slots_debug
=
@@
innodb_trx_rseg_n_slots_debug
;
...
...
mysql-test/suite/innodb/t/innodb_stats_fetch_nonexistent.test
View file @
813af4cd
...
...
@@ -4,6 +4,8 @@
--
source
include
/
have_innodb
.
inc
call
mtr
.
add_suppression
(
"InnoDB: Error: Fetch of persistent statistics requested for table*"
);
--
vertical_results
CREATE
TABLE
test_ps_fetch_nonexistent
...
...
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