From 5889816b8e813bf0127ad96abb8951d88235207c Mon Sep 17 00:00:00 2001 From: Leonard Wolters Date: Mon, 17 Jul 2023 11:53:36 +0200 Subject: [PATCH] Updated build to 1.8.3 and added test to stream functions --- .../com/crobox/clickhouse/dsl/column/ArrayFunctionsTest.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsl/src/test/scala/com/crobox/clickhouse/dsl/column/ArrayFunctionsTest.scala b/dsl/src/test/scala/com/crobox/clickhouse/dsl/column/ArrayFunctionsTest.scala index 58b088c6..b59cd506 100644 --- a/dsl/src/test/scala/com/crobox/clickhouse/dsl/column/ArrayFunctionsTest.scala +++ b/dsl/src/test/scala/com/crobox/clickhouse/dsl/column/ArrayFunctionsTest.scala @@ -54,7 +54,7 @@ class ArrayFunctionsTest extends DslTestSpec { } it should "arrayFunction: join with concat" in { - val col: ArrayFunctionOp[Iterable[String]] = arrayConcat(Array(shieldId, itemId), Array[String]()).asInstanceOf[ArrayFunctionOp[Iterable[String]]] + val col = arrayConcat(Array(shieldId, itemId), Array[String]()).asInstanceOf[ArrayFunctionOp[Iterable[String]]] toSQL(select(arrayJoin(col))) should be(s"SELECT arrayJoin(arrayConcat([shield_id, item_id], []))") } }