1
0
Fork 0
mirror of synced 2024-08-07 22:28:15 +12:00

Merge pull request #9923 from Budibase/fix/9790

SQL formulas - keeping after fetching
This commit is contained in:
Michael Drury 2023-03-07 15:58:25 +00:00 committed by GitHub
commit 5d166421bf

View file

@ -223,14 +223,15 @@ function shouldCopySpecialColumn(
column: { type: string }, column: { type: string },
fetchedColumn: { type: string } | undefined fetchedColumn: { type: string } | undefined
) { ) {
const isFormula = column.type === FieldTypes.FORMULA
const specialTypes = [ const specialTypes = [
FieldTypes.OPTIONS, FieldTypes.OPTIONS,
FieldTypes.LONGFORM, FieldTypes.LONGFORM,
FieldTypes.ARRAY, FieldTypes.ARRAY,
FieldTypes.FORMULA, FieldTypes.FORMULA,
] ]
// column has been deleted, remove // column has been deleted, remove - formulas will never exist, always copy
if (column && !fetchedColumn) { if (!isFormula && column && !fetchedColumn) {
return false return false
} }
const fetchedIsNumber = const fetchedIsNumber =