Skip to content

Commit 83c7898

Browse files
committed
Fix: Print Arrow table output in null coalescing test
1 parent df11948 commit 83c7898

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test-coalesce-null.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,7 @@
4040
time_window;"""
4141

4242
df = ctx.sql(sql)
43-
df.to_arrow_table()
43+
print(df)
44+
tb = df.to_arrow_table()
45+
46+
print(tb)

0 commit comments

Comments
 (0)