Skip to content

Commit 5a67329

Browse files
committed
MDEV-36461, followup: fix opt_trace.test for --view-protocol
1 parent cce76e7 commit 5a67329

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

mysql-test/main/opt_trace.result

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11069,9 +11069,9 @@ SUBQ a
1106911069
985 1
1107011070
985 2
1107111071
# The trace must be empty:
11072-
select json_detailed(json_extract(trace, '$**.range-checked-for-each-record'))
11072+
select json_detailed(json_extract(trace, '$**.range-checked-for-each-record')) as TRACE
1107311073
from information_schema.optimizer_trace;
11074-
json_detailed(json_extract(trace, '$**.range-checked-for-each-record'))
11074+
TRACE
1107511075
NULL
1107611076
# The trace must be empty:
1107711077
select json_detailed(json_extract(trace, '$**.join_execution'))

mysql-test/main/opt_trace.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1242,7 +1242,7 @@ select
12421242
from t3;
12431243

12441244
--echo # The trace must be empty:
1245-
select json_detailed(json_extract(trace, '$**.range-checked-for-each-record'))
1245+
select json_detailed(json_extract(trace, '$**.range-checked-for-each-record')) as TRACE
12461246
from information_schema.optimizer_trace;
12471247
--echo # The trace must be empty:
12481248
select json_detailed(json_extract(trace, '$**.join_execution'))

0 commit comments

Comments
 (0)