Hi, I just noticed another change in behaviour in the more recent builds of 13.1. Previously, code like this:
worked even with `allowMultiUpdate=false`, whereas now it says that the primary key is missing and I must provide it or set allowMultiUpdate.
Is it a bug, or was this type of code not allowed?
Code:
DSRequest dsRequest = new DSRequest("myDS", DataSource.OP_UPDATE, rpcManager); dsRequest.setCriteria(DataTools.buildMap("pk",DataTools.buildList(1, 2, 3)); dsRequest.setValues(values); DSResponse dsResponse = dsRequest.execute();
Is it a bug, or was this type of code not allowed?
Comment