-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
84689: opt: allow lookup joins to order on index columns r=DrewKimball a=DrewKimball It is possible for lookup joins to return the results of each lookup in the order of the lookup index. In the case when the input is ordered on a key, preserving the input ordering and then returning looked-up rows in index order is equivalent to performing a sort on the input ordering with the index columns appended. This patch teaches the optimizer that lookup joins can preserve the index ordering. This allows the optimizer to avoid sorting in some cases, which can significantly improve performance because sorts have to buffer all input rows. Fixes #84685 Release note: None 84920: sql: skip TestInformationSchemaMySQL r=wenyihu6 a=wenyihu6 Refs: #84915 Reason: There is a mismatch between MySQL version and CRDB in `pg_metadata_test.go`. More details in the issue above. Generated by bin/skip-test. Release justification: non-production code changes Release note: None 84930: roachprod: fix grafana-start permission issue r=irfansharif a=irfansharif Recent regression from #84670. Was seeing the following: chmod: cannot access '/etc/grafana/provisioning/dashboards/cockroach.yaml': No such file or directory chmod: cannot access '/etc/grafana/provisioning/datasources/prometheus.yaml': No such file or directory Release note: None Co-authored-by: DrewKimball <[email protected]> Co-authored-by: wenyihu3 <[email protected]> Co-authored-by: irfan sharif <[email protected]>
- Loading branch information
Showing
15 changed files
with
938 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.