forked from cockroachdb/cockroach
-
Notifications
You must be signed in to change notification settings - Fork 0
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
…db#51789 51659: colexec: fix closing of parallel unordered sync inputs r=jordanlewis a=yuzefovich The responsibility of closing all `Closer`s within the synchronizer input's tree lies on the goroutine that's handling that input. Previously, we were mistakenly calling `Close` after we have notified the wait groups that the handler-goroutine is done. This can result in races between vectorized flow cleanup and cleaning up those closers. This is now fixed. Fixes: cockroachdb#51470. Release note: None 51662: builtins: add a builtin to convert the hlc.Timestamp decimal to timestamp r=rohany a=rohany Fixes cockroachdb#51317. Release note (sql change): Add the builtin `crdb_internal.approximate_timestamp` to convert the decimal returned from the `crdb_internal_mvcc_timestamp` system column into a `timestamp`. 51681: opt: disable zigzag joins when system columns are requested r=yuzefovich a=rohany Fixes cockroachdb#51664. The zigzagjoiner isn't currently equipped to produce system columns, so disable generation of zigzagjoin memo entries if any system columns are requested. Release note: None 51789: sql: fix panic when evaluating check constraint during insert fast path r=mgartner a=RichardJCai Fix panic due to out of bounds error when intercepting error message in insert_fast_path.go. No release note since the panic is not in prod. Release note: None Co-authored-by: Yahor Yuzefovich <[email protected]> Co-authored-by: Rohan Yadav <[email protected]> Co-authored-by: richardjcai <[email protected]>
- Loading branch information
Showing
10 changed files
with
97 additions
and
1 deletion.
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
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