1
0
Fork 0
mirror of synced 2024-06-28 11:00:55 +12:00

accounting for false values in row processing

This commit is contained in:
Martin McKeaveney 2022-04-28 23:57:33 +01:00
parent 4bab24f1ac
commit 64de5e301e

View file

@ -175,9 +175,10 @@ module External {
const thisRow: Row = {}
// filter the row down to what is actually the row (not joined)
for (let fieldName of Object.keys(table.schema)) {
const value = row[`${table.name}.${fieldName}`] || row[fieldName]
const pathValue = row[`${table.name}.${fieldName}`]
const value = pathValue != null ? pathValue : row[fieldName]
// all responses include "select col as table.col" so that overlaps are handled
if (value) {
if (value != null) {
thisRow[fieldName] = value
}
}