Skip to content

Commit 0a9f3ed

Browse files
committed
round
1 parent febe647 commit 0a9f3ed

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

extensions/spark/kyuubi-spark-connector-tpch/src/main/resources/kyuubi/tpch/q10.output.hash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
* limitations under the License.
1616
*/
1717

18-
-2878174204
18+
-730770831

extensions/spark/kyuubi-spark-connector-tpch/src/main/resources/kyuubi/tpch/q10.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
select
2020
c_custkey,
2121
c_name,
22-
round(sum(l_extendedprice * (1 - l_discount)), 2) as revenue,
22+
round(sum(l_extendedprice * (1 - l_discount)), 1) as revenue,
2323
c_acctbal,
2424
n_name,
2525
c_address,

extensions/spark/kyuubi-spark-connector-tpch/src/test/scala/org/apache/kyuubi/spark/connector/tpch/TPCHQuerySuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ import org.apache.kyuubi.spark.connector.common.LocalSparkSession.withSparkSessi
4242
@Slow
4343
class TPCHQuerySuite extends KyuubiFunSuite {
4444

45-
val queries: Set[String] = (1 to 22).map(i => s"q$i").toSet
45+
val queries: List[String] = (1 to 22).map(i => s"q$i").toList
4646

4747
test("run query on tiny") {
4848
val viewSuffix = "view"

0 commit comments

Comments
 (0)