-
Notifications
You must be signed in to change notification settings - Fork 28.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
487 additions
and
32 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 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 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.