blob: 38189a63b7eae675856fe582cb66685a581e191e [file] [log] [blame]
====
---- QUERY
# Query an ORC table created by Hive 2.1.1 containig the following dates:
# 1582-10-04, 1582-10-05, 1582-10-06, 1582-10-15, 1582-10-16.
# Impala will incorrectly read back the dates that precede the introduction of Gregorian
# calendar (1582-10-15).
SELECT * FROM $DATABASE.hive2_pre_gregorian_orc;
---- TYPES
DATE
---- RESULTS
1582-10-14
1582-10-15
1582-10-16
1582-10-15
1582-10-16
====