Skip to content

Commit 6c0ff80

Browse files
committed
[SPARK-52183] Update SparkSQLRepl example to show up to 10k rows
1 parent aa61fff commit 6c0ff80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/SparkSQLRepl/main.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ while isRunning {
4646
break
4747
default:
4848
do {
49-
try await spark.time(spark.sql(String(match.1)).show)
49+
try await spark.time({ try await spark.sql(String(match.1)).show(10000, false) })
5050
} catch {
5151
print("Error: \(error)")
5252
}

0 commit comments

Comments
 (0)