Browse Source

fix: bulkUpdate raw

pull/8315/head
mertmit 5 months ago
parent
commit
ab86c09e3b
  1. 6
      packages/nocodb/src/db/BaseModelSqlv2.ts

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

@ -3779,6 +3779,12 @@ class BaseModelSqlv2 {
updatePkValues.push(pk);
}
}
} else {
const wherePk = await this._wherePk(pkValues, true);
toBeUpdated.push({ d, wherePk });
updatePkValues.push(pkValues);
}
}

Loading…
Cancel
Save