1
0
Fork 0
mirror of synced 2024-08-09 07:08:01 +12:00

Merge pull request #7737 from Budibase/bug/sev3/foreign-key-bigint-smallint

Postgres (and other external DBs) support foreign key bigint -> smallint
This commit is contained in:
melohagan 2022-09-13 08:26:02 +01:00 committed by GitHub
commit 9be2f517ca

View file

@ -371,7 +371,10 @@ module External {
const toColumn = `${linkedTable.name}.${relationship.to}`
// this is important when working with multiple relationships
// between the same tables, don't want to overlap/multiply the relations
if (!relationship.through && row[fromColumn] !== row[toColumn]) {
if (
!relationship.through &&
row[fromColumn]?.toString() !== row[toColumn]?.toString()
) {
continue
}
let linked = basicProcessing(row, linkedTable)