Fixing an issue with external tables containing time only fields.
This commit is contained in:
parent
758514a018
commit
673c375934
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue