From 2d838ffe624cebd31e06634794efdac65e2f0c13 Mon Sep 17 00:00:00 2001 From: Chong Gao Date: Tue, 19 Oct 2021 19:21:50 +0800 Subject: [PATCH] Test Signed-off-by: Chong Gao --- integration_tests/src/main/python/orc_write_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration_tests/src/main/python/orc_write_test.py b/integration_tests/src/main/python/orc_write_test.py index e984fe62218..76d14eb4226 100644 --- a/integration_tests/src/main/python/orc_write_test.py +++ b/integration_tests/src/main/python/orc_write_test.py @@ -39,7 +39,7 @@ orc_write_basic_map_gens = [simple_string_to_string_map_gen] + [MapGen(f(nullable=False), f()) for f in [ BooleanGen, ByteGen, ShortGen, IntegerGen, LongGen, FloatGen, DoubleGen, lambda nullable=True: TimestampGen(start=datetime(1900, 1, 1, tzinfo=timezone.utc), nullable=nullable), - lambda nullable=True: DateGen(start=date(1590, 1, 1), nullable=nullable)]] + lambda nullable=True: DateGen(start=date(1900, 1, 1), nullable=nullable)]] orc_write_gens_list = [orc_write_basic_gens, orc_write_struct_gens_sample,