Browse Source

fix: remove extra extractCompositePK call

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/7649/head
Pranav C 7 months ago
parent
commit
6e522b0a04
  1. 4
      packages/nocodb/src/db/BaseModelSqlv2.ts

4
packages/nocodb/src/db/BaseModelSqlv2.ts

@ -2450,14 +2450,10 @@ class BaseModelSqlv2 {
if (!response) await this.execAndParse(query);
response = await this.readByPk(
this.extractCompositePK({
rowId: this.extractCompositePK({
rowId: insertObj[ag.column_name],
insertObj,
ag,
}),
insertObj,
ag,
}),
false,
{},
{ ignoreView: true, getHiddenColumn: true },

Loading…
Cancel
Save