-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Merge dataframe and dataframe imp #1998
Merge dataframe and dataframe imp #1998
Conversation
Change-Id: Id15520a81c272a7666f17d5f3b707445a4af7798
Change-Id: I6c8cab772c206c80cd5aa5b39296d8009ab4efdb
Change-Id: I01ebf2f52e21aaf9b24e4fb7ac54904dcd55e220
Change-Id: I2c96a7e24f1f74052eee50ea8199f381bdb553df
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.
LGTM, thank you @vchag
Btw, some examples in datafusion-examples/examples
still use dataframe impl.
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
Change-Id: I72f7bf086cf8a5726490b9cdf3bd52ff4154f006
Change-Id: Ib585edb0b6c7416c48a77168d82989e309dd776b
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.
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 @vchag! Very neat refactoring!
Thanks @vchag @xudong963 ! |
yw! |
nice work @vchag ! |
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?