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. 6
      packages/nocodb/src/db/BaseModelSqlv2.ts

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

@ -2450,11 +2450,7 @@ class BaseModelSqlv2 {
if (!response) await this.execAndParse(query);
response = await this.readByPk(
this.extractCompositePK({
rowId: this.extractCompositePK({
rowId: insertObj[ag.column_name],
insertObj,
ag,
}),
rowId: insertObj[ag.column_name],
insertObj,
ag,
}),

Loading…
Cancel
Save