diff --git a/packages/nocodb/src/db/BaseModelSqlv2.ts b/packages/nocodb/src/db/BaseModelSqlv2.ts index 8ae726b8ba..4db2979e60 100644 --- a/packages/nocodb/src/db/BaseModelSqlv2.ts +++ b/packages/nocodb/src/db/BaseModelSqlv2.ts @@ -1600,7 +1600,6 @@ class BaseModelSqlv2 { }); const self: BaseModelSqlv2 = this; - // const childColumn = await colOptions.getChildColumn(); proto[ column.uidt === UITypes.Links ? `_nc_lk_${column.title}` diff --git a/tests/playwright/tests/utils/general.ts b/tests/playwright/tests/utils/general.ts index eb5e54ab98..989e36bdde 100644 --- a/tests/playwright/tests/utils/general.ts +++ b/tests/playwright/tests/utils/general.ts @@ -37,6 +37,8 @@ function isSubset(obj, potentialSubset) { if (!isSubset(objValue, potentialValue)) { return false; } + // skip strict type check since different database returns number values in string/number type + // todo: revert back to strict type check once we are consistent with type // eslint-disable-next-line no-prototype-builtins } else if (!obj.hasOwnProperty(prop) || objValue != potentialValue) { return false;