diff --git a/integration_tests/src/main/python/window_function_test.py b/integration_tests/src/main/python/window_function_test.py index 371b31ab316..78393c51609 100644 --- a/integration_tests/src/main/python/window_function_test.py +++ b/integration_tests/src/main/python/window_function_test.py @@ -27,22 +27,22 @@ _grpkey_longs_with_no_nulls = [ ('a', RepeatSeqGen(LongGen(nullable=False), length=20)), ('b', IntegerGen()), - ('c', IntegerGen())] + ('c', UniqueLongGen())] _grpkey_longs_with_nulls = [ ('a', RepeatSeqGen(LongGen(nullable=(True, 10.0)), length=20)), ('b', IntegerGen()), - ('c', IntegerGen())] + ('c', UniqueLongGen())] _grpkey_longs_with_dates = [ ('a', RepeatSeqGen(LongGen(), length=2048)), ('b', DateGen(nullable=False, start=date(year=2020, month=1, day=1), end=date(year=2020, month=12, day=31))), - ('c', IntegerGen())] + ('c', UniqueLongGen())] _grpkey_longs_with_nullable_dates = [ ('a', RepeatSeqGen(LongGen(nullable=False), length=20)), ('b', DateGen(nullable=(True, 5.0), start=date(year=2020, month=1, day=1), end=date(year=2020, month=12, day=31))), - ('c', IntegerGen())] + ('c', UniqueLongGen())] _grpkey_longs_with_timestamps = [ ('a', RepeatSeqGen(LongGen(), length=2048)), @@ -57,17 +57,17 @@ _grpkey_longs_with_decimals = [ ('a', RepeatSeqGen(LongGen(nullable=False), length=20)), ('b', DecimalGen(precision=18, scale=3, nullable=False)), - ('c', DecimalGen(precision=18, scale=3))] + ('c', UniqueLongGen())] _grpkey_longs_with_nullable_decimals = [ ('a', RepeatSeqGen(LongGen(nullable=(True, 10.0)), length=20)), ('b', DecimalGen(precision=18, scale=10, nullable=True)), - ('c', DecimalGen(precision=18, scale=10, nullable=True))] + ('c', UniqueLongGen())] _grpkey_longs_with_nullable_larger_decimals = [ ('a', RepeatSeqGen(LongGen(nullable=(True, 10.0)), length=20)), ('b', DecimalGen(precision=23, scale=10, nullable=True)), - ('c', DecimalGen(precision=23, scale=10, nullable=True))] + ('c', UniqueLongGen())] _grpkey_longs_with_nullable_largest_decimals = [ ('a', RepeatSeqGen(LongGen(nullable=(True, 10.0)), length=20)),