Skip to content

Commit 3f1d9a3

Browse files
committed
Temporary debug lines to figure out what is happening in CI
1 parent f933819 commit 3f1d9a3

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

examples/tpch/q21_suppliers_kept_orders_waiting.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,15 @@
4848
df_nation = ctx.read_parquet(get_data_path("nation.parquet")).select(
4949
"n_nationkey", "n_name"
5050
)
51+
print("df_orders")
52+
df_orders.show()
53+
print("df_lineitem")
54+
df_lineitem.show()
55+
print("df_supplier")
56+
df_supplier.show()
57+
print("df_nation")
58+
df_nation.show()
59+
5160

5261
# Limit to suppliers in the nation of interest
5362
df_suppliers_of_interest = df_nation.filter(col("n_name") == lit(NATION_OF_INTEREST))

0 commit comments

Comments
 (0)