aboutsummaryrefslogtreecommitdiff
path: root/sql/catalyst/src/test
diff options
context:
space:
mode:
Diffstat (limited to 'sql/catalyst/src/test')
-rw-r--r--sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/optimizer/SimplifyCastsSuite.scala67
1 files changed, 67 insertions, 0 deletions
diff --git a/sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/optimizer/SimplifyCastsSuite.scala b/sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/optimizer/SimplifyCastsSuite.scala
new file mode 100644
index 0000000000..e84f11272d
--- /dev/null
+++ b/sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/optimizer/SimplifyCastsSuite.scala
@@ -0,0 +1,67 @@
+/*
+ * 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.optimizer
+
+import org.apache.spark.sql.catalyst.dsl._
+import org.apache.spark.sql.catalyst.dsl.expressions._
+import org.apache.spark.sql.catalyst.dsl.plans._
+import org.apache.spark.sql.catalyst.expressions._
+import org.apache.spark.sql.catalyst.plans.PlanTest
+import org.apache.spark.sql.catalyst.plans.logical._
+import org.apache.spark.sql.catalyst.rules.RuleExecutor
+import org.apache.spark.sql.types._
+
+class SimplifyCastsSuite extends PlanTest {
+
+ object Optimize extends RuleExecutor[LogicalPlan] {
+ val batches = Batch("SimplifyCasts", FixedPoint(50), SimplifyCasts) :: Nil
+ }
+
+ test("non-nullable element array to nullable element array cast") {
+ val input = LocalRelation('a.array(ArrayType(IntegerType, false)))
+ val plan = input.select('a.cast(ArrayType(IntegerType, true)).as("casted")).analyze
+ val optimized = Optimize.execute(plan)
+ val expected = input.select('a.as("casted")).analyze
+ comparePlans(optimized, expected)
+ }
+
+ test("nullable element to non-nullable element array cast") {
+ val input = LocalRelation('a.array(ArrayType(IntegerType, true)))
+ val plan = input.select('a.cast(ArrayType(IntegerType, false)).as("casted")).analyze
+ val optimized = Optimize.execute(plan)
+ comparePlans(optimized, plan)
+ }
+
+ test("non-nullable value map to nullable value map cast") {
+ val input = LocalRelation('m.map(MapType(StringType, StringType, false)))
+ val plan = input.select('m.cast(MapType(StringType, StringType, true))
+ .as("casted")).analyze
+ val optimized = Optimize.execute(plan)
+ val expected = input.select('m.as("casted")).analyze
+ comparePlans(optimized, expected)
+ }
+
+ test("nullable value map to non-nullable value map cast") {
+ val input = LocalRelation('m.map(MapType(StringType, StringType, true)))
+ val plan = input.select('m.cast(MapType(StringType, StringType, false))
+ .as("casted")).analyze
+ val optimized = Optimize.execute(plan)
+ comparePlans(optimized, plan)
+ }
+}
+