-
Notifications
You must be signed in to change notification settings - Fork 28.6k
[SPARK-24923][SQL] Implement v2 CreateTableAsSelect #24570
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
Closed
Closed
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
b13a8e2
Implement v2 CreateTableAsSelect.
rdblue a22c335
Add v2 SQL test suite.
rdblue cdf3805
Update HiveSessionStateBuilder.
rdblue a214143
Minor updates after comments.
rdblue fe01700
Add missing test suite.
rdblue b19a70d
Remove default catalog.
rdblue 8b6d8ba
More changes from the review.
rdblue 99ebc00
Remove unnecessary declared type.
rdblue File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
153 changes: 153 additions & 0 deletions
153
...scala/org/apache/spark/sql/catalyst/analysis/CreateTablePartitioningValidationSuite.scala
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,153 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.spark.sql.catalyst.analysis | ||
|
||
import org.apache.spark.sql.catalog.v2.{Identifier, TableCatalog, TestTableCatalog} | ||
import org.apache.spark.sql.catalog.v2.expressions.LogicalExpressions | ||
import org.apache.spark.sql.catalyst.expressions.AttributeReference | ||
import org.apache.spark.sql.catalyst.plans.logical.{CreateTableAsSelect, LeafNode} | ||
import org.apache.spark.sql.types.{DoubleType, LongType, StringType, StructType} | ||
import org.apache.spark.sql.util.CaseInsensitiveStringMap | ||
|
||
class CreateTablePartitioningValidationSuite extends AnalysisTest { | ||
import CreateTablePartitioningValidationSuite._ | ||
|
||
test("CreateTableAsSelect: fail missing top-level column") { | ||
val plan = CreateTableAsSelect( | ||
catalog, | ||
Identifier.of(Array(), "table_name"), | ||
LogicalExpressions.bucket(4, "does_not_exist") :: Nil, | ||
TestRelation2, | ||
Map.empty, | ||
Map.empty, | ||
ignoreIfExists = false) | ||
|
||
assert(!plan.resolved) | ||
assertAnalysisError(plan, Seq( | ||
"Invalid partitioning", | ||
"does_not_exist is missing or is in a map or array")) | ||
} | ||
|
||
test("CreateTableAsSelect: fail missing top-level column nested reference") { | ||
val plan = CreateTableAsSelect( | ||
catalog, | ||
Identifier.of(Array(), "table_name"), | ||
LogicalExpressions.bucket(4, "does_not_exist.z") :: Nil, | ||
TestRelation2, | ||
Map.empty, | ||
Map.empty, | ||
ignoreIfExists = false) | ||
|
||
assert(!plan.resolved) | ||
assertAnalysisError(plan, Seq( | ||
"Invalid partitioning", | ||
"does_not_exist.z is missing or is in a map or array")) | ||
} | ||
|
||
test("CreateTableAsSelect: fail missing nested column") { | ||
val plan = CreateTableAsSelect( | ||
catalog, | ||
Identifier.of(Array(), "table_name"), | ||
LogicalExpressions.bucket(4, "point.z") :: Nil, | ||
TestRelation2, | ||
Map.empty, | ||
Map.empty, | ||
ignoreIfExists = false) | ||
|
||
assert(!plan.resolved) | ||
assertAnalysisError(plan, Seq( | ||
"Invalid partitioning", | ||
"point.z is missing or is in a map or array")) | ||
} | ||
|
||
test("CreateTableAsSelect: fail with multiple errors") { | ||
val plan = CreateTableAsSelect( | ||
catalog, | ||
Identifier.of(Array(), "table_name"), | ||
LogicalExpressions.bucket(4, "does_not_exist", "point.z") :: Nil, | ||
TestRelation2, | ||
Map.empty, | ||
Map.empty, | ||
ignoreIfExists = false) | ||
|
||
assert(!plan.resolved) | ||
assertAnalysisError(plan, Seq( | ||
"Invalid partitioning", | ||
"point.z is missing or is in a map or array", | ||
"does_not_exist is missing or is in a map or array")) | ||
} | ||
|
||
test("CreateTableAsSelect: success with top-level column") { | ||
val plan = CreateTableAsSelect( | ||
catalog, | ||
Identifier.of(Array(), "table_name"), | ||
LogicalExpressions.bucket(4, "id") :: Nil, | ||
TestRelation2, | ||
Map.empty, | ||
Map.empty, | ||
ignoreIfExists = false) | ||
|
||
assertAnalysisSuccess(plan) | ||
} | ||
|
||
test("CreateTableAsSelect: success using nested column") { | ||
val plan = CreateTableAsSelect( | ||
catalog, | ||
Identifier.of(Array(), "table_name"), | ||
LogicalExpressions.bucket(4, "point.x") :: Nil, | ||
TestRelation2, | ||
Map.empty, | ||
Map.empty, | ||
ignoreIfExists = false) | ||
|
||
assertAnalysisSuccess(plan) | ||
} | ||
|
||
test("CreateTableAsSelect: success using complex column") { | ||
val plan = CreateTableAsSelect( | ||
catalog, | ||
Identifier.of(Array(), "table_name"), | ||
LogicalExpressions.bucket(4, "point") :: Nil, | ||
TestRelation2, | ||
Map.empty, | ||
Map.empty, | ||
ignoreIfExists = false) | ||
|
||
assertAnalysisSuccess(plan) | ||
} | ||
} | ||
|
||
private object CreateTablePartitioningValidationSuite { | ||
val catalog: TableCatalog = { | ||
val cat = new TestTableCatalog() | ||
cat.initialize("test", CaseInsensitiveStringMap.empty()) | ||
cat | ||
} | ||
|
||
val schema: StructType = new StructType() | ||
.add("id", LongType) | ||
.add("data", StringType) | ||
.add("point", new StructType().add("x", DoubleType).add("y", DoubleType)) | ||
} | ||
|
||
private case object TestRelation2 extends LeafNode with NamedRelation { | ||
override def name: String = "source_relation" | ||
override def output: Seq[AttributeReference] = | ||
CreateTablePartitioningValidationSuite.schema.toAttributes | ||
} | ||
|
Oops, something went wrong.
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.
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.
Not a blocker, but we can improve the error message in the future. It's better to let users know which column/field is missing. For example,
a.b
, it's possible that columna
exists buta
is not a struct or it doesn't have ab
field.