-
Notifications
You must be signed in to change notification settings - Fork 28.9k
[SPARK-21891] [SQL] Add TBLPROPERTIES to DDL statement: CREATE TABLE USING #19100
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
[SPARK-21891] [SQL] Add TBLPROPERTIES to DDL statement: CREATE TABLE USING #19100
Conversation
| two 2 two 2 three 3 two 2 | ||
| two 2 two 2 two 2 two 2 | ||
|
|
||
|
|
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.
This was automatically added when I generating the result of SQLQueryTestSuite
| "select partcol2 from (select partcol2 from srcpart where partcol1 = 0 union all " + | ||
| "select partcol2 from srcpart where partcol1 = 1) t group by partcol2") | ||
|
|
||
| test("SPARK-21884 Fix StackOverflowError on MetadataOnlyQuery") { |
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.
+1 for preventing futhre regression! Thanks.
|
Test build #81301 has finished for PR 19100 at commit
|
|
Test build #81300 has finished for PR 19100 at commit
|
dongjoon-hyun
left a comment
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.
+1, LGTM.
|
retest this please |
jiangxb1987
left a comment
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
|
Test build #81325 has finished for PR 19100 at commit
|
What changes were proposed in this pull request?
Add
TBLPROPERTIESto the DDL statementCREATE TABLE USING.After this change, the DDL becomes
How was this patch tested?
Add a few tests