Skip to content

Commit

Permalink
Avoid generating null filter values in test_delta_dfp_reuse_broadcast…
Browse files Browse the repository at this point in the history
…_exchange

Signed-off-by: Jason Lowe <[email protected]>
  • Loading branch information
jlowe committed Nov 16, 2023
1 parent 90789ba commit 4c6c1d8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion integration_tests/src/main/python/delta_zorder_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,8 @@ def build_and_optimize_tables(spark):
('ex_skey', IntegerGen(nullable=False, min_val=0, max_val=1000, special_cases=[])),
('value', int_gen),
('filter', RepeatSeqGen(
IntegerGen(min_val=0, max_val=2000, special_cases=[]), length=2000 // 20))
IntegerGen(nullable=False, min_val=0, max_val=2000, special_cases=[]),
length=2000 // 20))
], 2000)
df.write.format("delta") \
.mode("overwrite") \
Expand Down

0 comments on commit 4c6c1d8

Please sign in to comment.