Uh oh!
There was an error while loading. Please reload this page.
Merge dataframe and dataframe imp - #1998
Merged
Merged
Conversation
added 2 commits
March 12, 2022 13:56
Change-Id: Id15520a81c272a7666f17d5f3b707445a4af7798
Change-Id: I6c8cab772c206c80cd5aa5b39296d8009ab4efdb
added 3 commits
March 12, 2022 14:26
Change-Id: I01ebf2f52e21aaf9b24e4fb7ac54904dcd55e220
Change-Id: I2c96a7e24f1f74052eee50ea8199f381bdb553df
Uh oh!
There was an error while loading. Please reload this page.
vchag
commented
Mar 14, 2022
ContributorAuthor
You're welcome @xudong963 The log mentions of an
Could the build process be using an old version of datafusion-examples module? |
Change-Id: I3aea55073f454d9fd096df0d5d9bf7fe5533bfaa
Member
Change-Id: I72f7bf086cf8a5726490b9cdf3bd52ff4154f006
Change-Id: Ib585edb0b6c7416c48a77168d82989e309dd776b
vchag
commented
Mar 14, 2022
ContributorAuthor
yjshen
commented
Mar 15, 2022
Member
Thanks @vchag@xudong963 ! |
vchag
commented
Mar 15, 2022
ContributorAuthor
yw! |
houqp
commented
Mar 17, 2022
Member
nice work @vchag ! |
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 freeto 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.


Which issue does this PR close?
Closes#1962 .
Rationale for this change
The Dataframe trait was introduced in order to have two separate Dataframe implementation in Datafusion and Ballista. Since then, the design has changed and we are sharing the same dataframe implementation between Datafusion and Ballista now. Therefore, we could simplify the code base by getting rid of the Dataframe trait abstraction and promoting DataframeImpl into Dataframe struct.
What changes are included in this PR?