From 1e7a24e4fc100c26201049506f98a67149583d9f Mon Sep 17 00:00:00 2001 From: Nghia Truong Date: Mon, 12 Sep 2022 15:35:31 -0700 Subject: [PATCH] Change `orc_timestamp_gen` Signed-off-by: Nghia Truong --- integration_tests/src/main/python/orc_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration_tests/src/main/python/orc_test.py b/integration_tests/src/main/python/orc_test.py index 1d283794816..744c63a8103 100644 --- a/integration_tests/src/main/python/orc_test.py +++ b/integration_tests/src/main/python/orc_test.py @@ -35,7 +35,7 @@ def read_orc_sql(data_path): # epoch in 1970 and the microsecond value is between 0 and 1000. # See https://github.com/rapidsai/cudf/issues/11525. def get_orc_timestamp_gen(nullable=True): - return TimestampGen(start=datetime(1970, 1, 1, tzinfo=timezone.utc), nullable=nullable) + return TimestampGen(start=datetime(1590, 1, 1, tzinfo=timezone.utc), nullable=nullable) orc_timestamp_gen = get_orc_timestamp_gen()