1
0
Fork 0
mirror of synced 2024-06-28 02:50:50 +12:00

Fixing an issue with external tables containing time only fields.

This commit is contained in:
mike12345567 2022-09-07 17:57:02 +01:00
parent 758514a018
commit 673c375934

View file

@ -76,7 +76,7 @@ exports.processDates = (table, rows) => {
if (schema.type !== FieldTypes.DATETIME) {
continue
}
if (!schema.ignoreTimezones) {
if (!schema.timeOnly && !schema.ignoreTimezones) {
datesWithTZ.push(column)
}
}