-
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.
63678: cliccl/debug_backup.go: fix export backup table with multiple ranges r=pbardea a=Elliebababa Previously, `MakeBackupTableEntry` only exports sst files of a single range of a table. This is problematic if the table has multiple ranges. This patch changes the struct of `BackupTableEntry` to allow grouping sst files of a table over ranges. Release note (bug fix): Fix a bug of `debug backup export` caused by inspecting table with multiple ranges. 64022: sql/pgwire: fix encoding of decimals with trailing 0s r=otan a=rafiss fixes #56907 The dscale is defined as number of digits (in base 10) visible after the decimal separator," so a negative dscale makes no sense and is not valid. This was preventing NPGSQL from being able to decode the binary decimals that CockroachDB was sending. Release note (bug fix): The binary encoding of decimals no longer will have negative `dscale` values. This was preventing Npgsql from being able to read some binary decimals from CockroachDB. Co-authored-by: elliebababa <[email protected]> Co-authored-by: Rafi Shamim <[email protected]>
- Loading branch information
Showing
8 changed files
with
268 additions
and
84 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
Oops, something went wrong.