-
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.
68101: roachtest: rudimentary support for secure clusters r=stevendanna,richardjcai a=tbg TL;DR: roachtest can now start a secure cluster and `c.Conn` will "just work". - roachprod: improve impl of pgurl - roachtest: support using Conn() against secure clusters - roachtest: remove unused method from Cluster interface - roachtest: remove ad-hoc methods for secure clusters 68141: sql, opt: support hint to disallow zigzag join, support bounded staleness checks r=rytaft a=rytaft **opt,sql: support hint to disallow zigzag join** Release note (sql change): Added support for a new index hint, `NO_ZIGZAG_JOIN`, which will prevent the optimizer from planning a zigzag join for the specified table. The hint can be used in the same way as other existing index hints. For example, `SELECT * FROM table_name@{NO_ZIGZAG_JOIN};`. **sql,opt: pass tree.SemaContext to the execbuilder** This commit updates the execbuilder to include the `tree.SemaContext` as one of its arguments. This will allow it to use the `AsOfSystemTime` information in a following commit. Release note: None **opt: add execbuilder checks for bounded staleness queries** This commit adds checks in the execbuilder to ensure that bounded staleness can only be used with queries that touch at most one row. It also applies hints for such queries in the optbuilder to ensure that an invalid plan is not produced. In particular, the hints ensure that no plans with an index join or zigzag join will be produced. Fixes #67558 Release note: None Co-authored-by: Tobias Grieger <[email protected]> Co-authored-by: Rebecca Taft <[email protected]>
- Loading branch information
Showing
50 changed files
with
544 additions
and
251 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.