-
Notifications
You must be signed in to change notification settings - Fork 116
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SNOW-1662105, SNOW-1662657: Support by
, left_by
, right_by
for pd.merge_asof
#2284
Merged
Conversation
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
Signed-off-by: Naren Krishna <[email protected]>
sfc-gh-nkrishna
requested review from
sfc-gh-lspiegelberg and
sfc-gh-rdurrani
September 12, 2024 15:50
sfc-gh-nkrishna
added
NO-CHANGELOG-UPDATES
This pull request does not need to update CHANGELOG.md
NO-PANDAS-CHANGEDOC-UPDATES
This PR does not update Snowpark pandas docs
labels
Sep 12, 2024
sfc-gh-nkrishna
requested review from
sfc-gh-yzou
and removed request for
sfc-gh-lspiegelberg
September 12, 2024 15:59
@sfc-gh-nkrishna I created a JIRA ticket for this refactor work from you, could you please or do you mind I linking it to this PR? https://snowflakecomputing.atlassian.net/browse/SNOW-1662105 Thanks |
sfc-gh-nkrishna
changed the title
REFACTOR: Make left join identifiers and right join identifiers optional for join utility
SNOW-1662105: Make left join identifiers and right join identifiers optional for join utility
Sep 12, 2024
sfc-gh-vbudati
approved these changes
Sep 12, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks Naren!
sfc-gh-azhan
requested changes
Sep 12, 2024
Perhaps @sfc-gh-nkumar can take a quick look? |
sfc-gh-yzou
reviewed
Sep 12, 2024
Signed-off-by: Naren Krishna <[email protected]>
sfc-gh-yzou
reviewed
Sep 12, 2024
sfc-gh-nkrishna
changed the title
SNOW-1662105: Make left join identifiers and right join identifiers optional for join utility
SNOW-1662105: Support Sep 12, 2024
by
, left_by
, right_by
for pd.merge_asof
sfc-gh-nkrishna
changed the title
SNOW-1662105: Support
SNOW-1662105, SNOW-1662657: Support Sep 12, 2024
by
, left_by
, right_by
for pd.merge_asof
by
, left_by
, right_by
for pd.merge_asof
Signed-off-by: Naren Krishna <[email protected]>
sfc-gh-nkrishna
commented
Sep 12, 2024
sfc-gh-nkrishna
removed
NO-CHANGELOG-UPDATES
This pull request does not need to update CHANGELOG.md
NO-PANDAS-CHANGEDOC-UPDATES
This PR does not update Snowpark pandas docs
labels
Sep 12, 2024
Signed-off-by: Naren Krishna <[email protected]>
Signed-off-by: Naren Krishna <[email protected]>
Signed-off-by: Naren Krishna <[email protected]>
sfc-gh-azhan
approved these changes
Sep 13, 2024
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
SNOW-1662105, SNOW-1662657
This PR refactors
join_utils.py
to makeleft_on
andright_on
optional arguments, as they are not required for "cross" or "asof" joins. It also supportby
,left_by
,right_by
forpd.merge_asof
.