scripts: add Yahor to release notes#26096
Merged
craig[bot] merged 1 commit intocockroachdb:masterfrom May 25, 2018
Merged
Conversation
This adds Yahor Yuzefovich to the roachers list. Release note: None
Member
knz
approved these changes
May 25, 2018
Member
Author
|
bors r+ |
craig bot
pushed a commit
that referenced
this pull request
May 25, 2018
25810: sql: Add the ability to access a specific column in a labeled tuple r=BramGruneir a=BramGruneir This work is yet another step towards #16971. The labeled tuples introduced in #25283 can now be accessed using their labels. It's important to note that they require an extra parentheses around them to do so. ```sql SELECT (((1,'2',true) AS a, b, c)).a +---+ | a | +---+ | 1 | +---+ SELECT (((1,'2',true) AS a, b, c)).b +---+ | b | +---+ | 2 | +---+ SELECT (((1,'2',true) AS a, b, c)).c +------+ | c | +------+ | true | +------+ ``` This change prompted the need to restrict the labels in the tuple to be unique; checks and test cases for that have been added as well. Star expansion is still not allowed. Release note: Labeled tuples can now be accessed using their labels (e.g. `SELECT (((1,'2',true) AS a, b, c)).a` but it requires an extra level of parentheses to do so. 26096: scripts: add Yahor to release notes r=yuzefovich a=yuzefovich This adds Yahor Yuzefovich to the roachers list. Release note: None Co-authored-by: Bram Gruneir <bram@cockroachlabs.com> Co-authored-by: yuzefovich <yahor@cockroachlabs.com>
Contributor
Build succeeded |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This adds Yahor Yuzefovich to the roachers list.
Release note: None