Skip to content

Commit 25e9ae5

Browse files
committed
Bug#35327006 Stabilize the weekly runs [noclose]
Make perfschema.error_log ignore deprecation warnings. It will also require binlog to be turned on. Change-Id: Id549b9919ebb228e97b52c6593c653f6b0a0ae9b
1 parent 750159c commit 25e9ae5

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

mysql-test/suite/perfschema/r/error_log.result

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ AND error_code NOT IN("MY-011243", "MY-011240", "MY-011245", "MY-010931",
9292
"MY-013880", "MY-013881", "MY-013882", "MY-013883",
9393
"MY-013884", "MY-013908", "MY-013930", "MY-014013",
9494
"MY-000068", "MY-014066", "MY-014067", "MY-014068",
95-
"MY-013932", "MY-010101", "MY-010099")
95+
"MY-013932", "MY-010101", "MY-010099", "MY-011070")
9696
ORDER BY logged, error_code;
9797
prio error_code subsystem
9898
System MY-015015 Server
@@ -160,7 +160,7 @@ AND prio!="Note"
160160
"MY-000067", "MY-010159", "MY-013595", "MY-013602",
161161
"MY-010108", "MY-012363", "MY-013711", "MY-013908",
162162
"MY-013930", "MY-000068", "MY-015015", "MY-010101",
163-
"MY-010099")
163+
"MY-010099", "MY-011070")
164164
ORDER BY logged;
165165
prio error_code subsystem data
166166
System MY-013576 InnoDB InnoDB initialization has started.

mysql-test/suite/perfschema/t/error_log.test

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
--echo
33

44
--source include/not_parallel.inc
5+
--source include/have_log_bin.inc
56

67
let $LOG_VERBOSE= `select @@global.log_error_verbosity`;
78
SET @@global.log_error_verbosity=3;
@@ -137,6 +138,7 @@ SELECT prio,error_code,subsystem,data
137138
# MY-013932: ER_BUILD_ID
138139
# MY-010099: ER_SEC_FILE_PRIV_DIRECTORY_INSECURE
139140
# MY-010101: ER_SEC_FILE_PRIV_DIRECTORY_PERMISSIONS
141+
# MY-011070: ER_DEPRECATE_MSG_NO_REPLACEMENT
140142
SELECT prio,error_code,subsystem
141143
FROM performance_schema.error_log
142144
WHERE logged>=@startup
@@ -150,7 +152,7 @@ SELECT prio,error_code,subsystem
150152
"MY-013880", "MY-013881", "MY-013882", "MY-013883",
151153
"MY-013884", "MY-013908", "MY-013930", "MY-014013",
152154
"MY-000068", "MY-014066", "MY-014067", "MY-014068",
153-
"MY-013932", "MY-010101", "MY-010099")
155+
"MY-013932", "MY-010101", "MY-010099", "MY-011070")
154156
ORDER BY logged, error_code;
155157

156158
--echo
@@ -176,6 +178,7 @@ SELECT prio,error_code,subsystem
176178
# MY-015015: ER_SRV_START
177179
# MY-010099: ER_SEC_FILE_PRIV_DIRECTORY_INSECURE
178180
# MY-010101: ER_SEC_FILE_PRIV_DIRECTORY_PERMISSIONS
181+
# MY-011070: ER_DEPRECATE_MSG_NO_REPLACEMENT
179182
SELECT prio,error_code,subsystem,data
180183
FROM performance_schema.error_log
181184
WHERE logged>=@startup
@@ -185,7 +188,7 @@ SELECT prio,error_code,subsystem,data
185188
"MY-000067", "MY-010159", "MY-013595", "MY-013602",
186189
"MY-010108", "MY-012363", "MY-013711", "MY-013908",
187190
"MY-013930", "MY-000068", "MY-015015", "MY-010101",
188-
"MY-010099")
191+
"MY-010099", "MY-011070")
189192
ORDER BY logged;
190193

191194
--echo

0 commit comments

Comments
 (0)