Skip to content

Commit

Permalink
Updated to not copy the query iterator when cloning the query logic as
Browse files Browse the repository at this point in the history
this can cause execution issues
  • Loading branch information
ivakegg authored and hgklohr committed Dec 21, 2024
1 parent 1440f31 commit 1b968ba
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,8 @@ public void copyFrom(GenericQueryConfiguration other) {
this.setEndDate(other.getEndDate());
this.setMaxWork(other.getMaxWork());
this.setQueries(other.getQueries());
this.setQueriesIter(other.getQueriesIter());
// copying the query iterators can cause issues if the query is running.
// this.setQueriesIter(other.getQueriesIter());
this.setQueryString(other.getQueryString());
this.setTableName(other.getTableName());
this.setReduceResults(other.isReduceResults());
Expand Down

0 comments on commit 1b968ba

Please sign in to comment.