From e50cd2603580a1ed83d241c036a6705a9661c5ac Mon Sep 17 00:00:00 2001 From: Pranav C Date: Mon, 20 Nov 2023 12:45:28 +0530 Subject: [PATCH] chore: cleanup --- packages/nocodb/src/db/BaseModelSqlv2.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/packages/nocodb/src/db/BaseModelSqlv2.ts b/packages/nocodb/src/db/BaseModelSqlv2.ts index b9138d7517..41c223dcc2 100644 --- a/packages/nocodb/src/db/BaseModelSqlv2.ts +++ b/packages/nocodb/src/db/BaseModelSqlv2.ts @@ -4684,7 +4684,6 @@ class BaseModelSqlv2 { ]), ); }); - // .where(_wherePk(parentTable.primaryKeys, childId)) if (parentTable.primaryKeys.length > 1) { childRowsQb.where((qb) => { @@ -4903,8 +4902,6 @@ class BaseModelSqlv2 { const childTn = this.getTnPath(childTable); const parentTn = this.getTnPath(parentTable); - // const prevData = await this.readByPk(rowId); - switch (colOptions.type) { case RelationTypes.MANY_TO_MANY: { @@ -5129,7 +5126,6 @@ class BaseModelSqlv2 { parentCol.column_name, this.dbDriver(childTn) .select(chilCol.column_name) - // .where(parentTable.primaryKey.cn, p) .where(_wherePk(childTable.primaryKeys, id)), );