Always use tableid prefix for sqs

This commit is contained in:
Adria Navarro 2024-12-19 13:32:47 +01:00
parent 889197679e
commit 0ee432dd9a
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ async function buildInternalFieldList(
if (!isView || !helpers.views.isCalculationView(source)) { if (!isView || !helpers.views.isCalculationView(source)) {
for (const field of PROTECTED_INTERNAL_COLUMNS) { for (const field of PROTECTED_INTERNAL_COLUMNS) {
fieldList.push(field) fieldList.push(`${table._id}.${field}`)
} }
} }