Skip to content

Commit 0077b00

Browse files
committed
Removing buggy usage of execute
Not sure why `output` was ever set to `execute` - removing it does not cause any breaks on MarkLogic 11.1, and the 11-nightly (properly) throws an error when it's included. So removing it.
1 parent 1ba3bef commit 0077b00

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

marklogic-client-api/src/main/java/com/marklogic/client/impl/RowManagerImpl.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -215,9 +215,7 @@ public void execute(Plan plan) {
215215
@Override
216216
public void execute(Plan plan, Transaction transaction) {
217217
PlanBuilderBaseImpl.RequestPlan requestPlan = checkPlan(plan);
218-
RequestParameters params = newRowsParamsBuilder(requestPlan)
219-
.withOutput("execute")
220-
.getRequestParameters();
218+
RequestParameters params = newRowsParamsBuilder(requestPlan).getRequestParameters();
221219
RESTServiceResultIterator iter = submitPlan(requestPlan, params, transaction);
222220
if (iter != null) {
223221
iter.close();

0 commit comments

Comments
 (0)