From e9a5c1a5bb28224518ced81517bc7deaef903f85 Mon Sep 17 00:00:00 2001 From: sarangat_LinkedIn Date: Thu, 1 Jan 2026 03:18:47 -0800 Subject: [PATCH] add sort op tests --- .../auron/utils/AuronSparkTestSettings.scala | 2 ++ .../spark/sql/AuronDataFrameSuite.scala | 19 +++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 auron-spark-tests/spark33/src/test/scala/org/apache/spark/sql/AuronDataFrameSuite.scala diff --git a/auron-spark-tests/spark33/src/test/scala/org/apache/auron/utils/AuronSparkTestSettings.scala b/auron-spark-tests/spark33/src/test/scala/org/apache/auron/utils/AuronSparkTestSettings.scala index 2bccdc086..83505fdd6 100644 --- a/auron-spark-tests/spark33/src/test/scala/org/apache/auron/utils/AuronSparkTestSettings.scala +++ b/auron-spark-tests/spark33/src/test/scala/org/apache/auron/utils/AuronSparkTestSettings.scala @@ -28,6 +28,8 @@ class AuronSparkTestSettings extends SparkTestSettings { // See https://github.com/apache/auron/issues/1724 .exclude("string / binary substring function") + enableSuite[AuronDataFrameSuite] + // Will be implemented in the future. override def getSQLQueryTestSettings = new SQLQueryTestSettings { override def getResourceFilePath: String = ??? diff --git a/auron-spark-tests/spark33/src/test/scala/org/apache/spark/sql/AuronDataFrameSuite.scala b/auron-spark-tests/spark33/src/test/scala/org/apache/spark/sql/AuronDataFrameSuite.scala new file mode 100644 index 000000000..b4cde7620 --- /dev/null +++ b/auron-spark-tests/spark33/src/test/scala/org/apache/spark/sql/AuronDataFrameSuite.scala @@ -0,0 +1,19 @@ +/* + * 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 + +class AuronDataFrameSuite extends DataFrameSuite with SparkQueryTestsBase