You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bug#36213938:QEP regression with prefer_ordering_index=off
post push fix:
This patch fixes the order_by_limit.test failure seen on PB2
hypergraph enabled runs.
Change-Id: I7cf47e03bf5289447562cbb6b11949da3432332a
Copy file name to clipboardExpand all lines: mysql-test/t/order_by_limit.test
+8-2
Original file line number
Diff line number
Diff line change
@@ -604,8 +604,14 @@ SET optimizer_switch = "prefer_ordering_index=off";
604
604
605
605
# Verify that the index usage recheck function is called
606
606
--connection default
607
-
--let $wait_condition= SELECT COUNT(*)=1 FROM performance_schema.threads WHERE NAME = "thread/sql/one_connection" AND PROCESSLIST_INFO LIKE "EXPLAIN SELECT * FROM t1%" AND PROCESSLIST_STATE = "preparing" ;
--echo <ignored hypergraph optimizer error: Depends on the query plan>
610
+
}
611
+
if (!$using_hypergraph) {
612
+
--let $wait_condition= SELECT COUNT(*)=1 FROM performance_schema.threads WHERE NAME = "thread/sql/one_connection" AND PROCESSLIST_INFO LIKE "EXPLAIN SELECT * FROM t1%" AND PROCESSLIST_STATE = "preparing" ;
613
+
--source include/wait_condition.inc
614
+
}
609
615
610
616
# Continue execution
611
617
SET DEBUG_SYNC= "now SIGNAL signal.prefer_ordering_index_check_continue";
0 commit comments