Skip to content

Commit

Permalink
0004651: Column match routers can mark batches unrouted with initial
Browse files Browse the repository at this point in the history
load select set in table reload request only
  • Loading branch information
jumpmind-josh committed Nov 21, 2020
1 parent c0f87eb commit 6a01ccd
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -2911,7 +2911,7 @@ protected CsvData selectNext() {
this.currentInitialLoadEvent = null;
} else {
this.triggerRouter = this.currentInitialLoadEvent.getTriggerRouter();
this.initialLoadSelectUsed = this.currentInitialLoadEvent.getInitialLoadSelect() != null
this.initialLoadSelectUsed = this.currentInitialLoadEvent.getInitialLoadSelect() != null && !this.currentInitialLoadEvent.getInitialLoadSelect().equals("1=1")
? true : StringUtils.isNotBlank(this.triggerRouter.getInitialLoadSelect());

Router router = triggerRouter.getRouter();
Expand Down

0 comments on commit 6a01ccd

Please sign in to comment.