-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
52758: backupccl: add SHOW BACKUPS IN Y and SHOW BACKUP x IN Y r=dt a=dt This change teaches SHOW BACKUP about collections, specifically adding support for listing the backups in a collection with SHOW BACKUPS IN dest and for showing an individual backup with dest using SHOW BACKUP x IN dest. The former is a thin wrapper around 'ls' on the destination while the latter is an even thinner wrapper around 'SHOW BACKUP dest/x', but both should make it easier to interact with backups in collections, which often have long and cumbersome URIs (including keys), so the more we can keep the collection URI constant and let you just specify which element in the collection you want to SHOW, RESTORE, etc, the easier it will be. Release note (enterprise change): SHOW BACKUPS can be used to list backups in a backup collection created by BACKUP INTO. 52892: geo: implement ST_PointFromGeoHash({text,int4}) -> geometry r=otan a=himanshuchawla009 fixes: #48820 This PR adds a function to calculate the convert geohash representation to point representation, imitating the PostGIS funcitonality. if no precision is specified ST_PointFromGeoHash returns a point based on full precision of the input GeoHash string. If precision is specified ST_PointFromGeoHash will use that many characters from the GeoHash to create the point. Release note (sql change): Implements ST_PointFromGeoHash which converts geohash to point 52990: sql: gate certain box2d comparison ops by a cluster setting r=rytaft a=otan Release note (sql change): box2d comparison operators are now gated by the cluster setting `sql.spatial.experimental_box2d_comparison_operators.enabled`. 52993: bulkio: Dry run backup when creating schedules. r=miretskiy a=miretskiy Fixes #52924 Dry run execution of the scheduled backup. Invoking backup planning and execution in dry run ensures that the scheduled backup is sane since all of the required sanity checks are performed when attempting to run the backup. The actual effects of this dry run are removed by rolling back to the safepoint. Release Notes: None 53003: sql: more EXPLAIN improvements r=RaduBerinde a=RaduBerinde #### sql: omit various EXPLAIN fields in non-verbose mode This change removes some unnecessary fields, and relegates others to the VERBOSE variant. Release note (sql change): various improvements to EXPLAIN plans. #### sql: improve EXPLAIN output for join nodes This change folds the type of join (inner/outer/etc) into the node name itself (e.g. `hash join (left outer)`). The "inner" type is omitted in non-verbose mode. Release note (sql change): various improvements to EXPLAIN plans. #### sql: improve EXPLAIN output for scalar group by Move "scalar" to the node name instead of a separate field. Release note (sql change): various improvements to EXPLAIN plans. #### sql: improve EXPLAIN output for set operations Improve the node names for set operation: `union/intersect/except [all]`. Release note (sql change): various improvements in EXPLAIN plans. 53032: pkg/jobs: skip flaky TestJobSchedulerDaemonProcessesJobs r=jbowens a=jbowens See #52959. Release note: None Co-authored-by: David Taylor <[email protected]> Co-authored-by: himanshuchawla009 <[email protected]> Co-authored-by: Oliver Tan <[email protected]> Co-authored-by: Yevgeniy Miretskiy <[email protected]> Co-authored-by: Radu Berinde <[email protected]> Co-authored-by: Jackson Owens <[email protected]>
- Loading branch information
Showing
56 changed files
with
4,917 additions
and
5,049 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
show_backup_stmt ::= | ||
'SHOW' 'BACKUP' location opt_with_options | ||
| 'SHOW' 'BACKUP' location 'IN' location opt_with_options | ||
| 'SHOW' 'BACKUP' 'SCHEMAS' location opt_with_options |
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.