From c1bee42bdac3c5a729a6b79ccb830a94b3f10c27 Mon Sep 17 00:00:00 2001 From: Jason Lowe Date: Wed, 21 Jul 2021 14:42:53 -0500 Subject: [PATCH] Avoid struct aliasing in test_round_robin_sort_fallback Signed-off-by: Jason Lowe --- integration_tests/src/main/python/repart_test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/integration_tests/src/main/python/repart_test.py b/integration_tests/src/main/python/repart_test.py index 20976ff3056..f798ae30f25 100644 --- a/integration_tests/src/main/python/repart_test.py +++ b/integration_tests/src/main/python/repart_test.py @@ -132,7 +132,8 @@ def test_repartition_df(data_gen, num_parts, length): ('a_1_2', float_gen), ('a_1_3', double_gen) ])), - ('b_1', long_gen) + ('b_1', long_gen), + ('c_1', int_gen) ]))], [('a', simple_string_to_string_map_gen)]], ids=idfn) @ignore_order(local=True) # To avoid extra data shuffle by 'sort on Spark' for this repartition test.