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
157083: opt: explore splitting disjunction over same column r=mgartner a=michae2
The SplitDisjunction rules did not consider disjunctions over expressions referencing the same column interesting, because normally these disjunctions can become multiple spans in the same constrained scan. There is one special case, however, where disjunctions over the same column might be interesting: if the table has multiple partial indexes with different predicates referencing that column. In that case we might be able to use a different partial index for each side of the disjunction.
Fixes: #157073
Release note (performance improvement): This commit teaches the optimizer to split disjunctions on the same column into unions when there are multiple partial indexes with different predicates referencing that column.
157859: roachtest: skip latency verification for 2 mins after getting to steady state r=jeffswenson a=msbutler
This patch modifies the latency verifier to sleep for 2 minutes after detecting steady state (i.e. catchup scan/ initial scan completion), so a test doesn't flake after a temporary post catchup scan latency blip.
Informs #156707
Release note: none
Co-authored-by: Michael Erickson <michae2@cockroachlabs.com>
Co-authored-by: Michael Butler <butler@cockroachlabs.com>
0 commit comments