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.
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-34152][SQL] Make CreateViewStatement.child to be LogicalPlan's children so that it's resolved in analyze phase #31273
[SPARK-34152][SQL] Make CreateViewStatement.child to be LogicalPlan's children so that it's resolved in analyze phase #31273
Changes from all commits
db4dfaf
71c01e8
8dc1961
7becf96
4b3f184
9085d17
f2b86a9
bfabe9f
1f2e4c7
0b75fdc
ac663aa
30e750c
0fbf1cf
a8581c6
4e77301
60cf521
a0ba508
1949cbc
5e38e2b
388ec16
7e92eeb
fbdcf3b
2a3e5b7
e92cbe1
8422ae8
bace91a
9432fec
737307c
d906e19
4e55a1f
e9cd2f3
9da3b9c
e36fc34
b54df8a
c5651b2
d4e958a
84d817c
82d58ba
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
If https://github.com/apache/spark/pull/31273/files#r580757641 is done,
case plan
can also be removed.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.
If the current PR's approach is fine, we can remove this
case other => other
and changecreateTempView
to usetableDefinition: TemporaryViewRelation
instead oftableDefinition: LogicalPlan
once we migrateALTER VIEW AS
andCREATE TEMP VIEW USING
.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