1
0
Fork 0
mirror of synced 2024-09-20 03:08:18 +12:00

Remove unnecessary cast

This commit is contained in:
Adria Navarro 2024-07-09 10:49:57 +02:00
parent 58bd346885
commit 62f5790a81

View file

@ -193,15 +193,7 @@ export class ExternalRequest<T extends Operation> {
for (let field of Object.keys(operator || {})) {
if (dbCore.removeKeyNumbering(field) === "_id") {
if (primary) {
let idField = operator[field]
try {
// Make sure _id queries decode the Row IDs
idField = JSON.parse(idField)
} catch {
// It is not a JSON value
}
const parts = breakRowIdField(idField)
const parts = breakRowIdField(operator[field])
if (primary.length > 1) {
operator[sql.Sql.COMPLEX_ID_OPERATOR] = {
id: primary,