Skip to content

Commit

Permalink
fix(jdbc): bad MySQL filter on the search execution query (#1022)
Browse files Browse the repository at this point in the history
  • Loading branch information
loicmathieu authored Feb 27, 2023
1 parent 1dfa2e7 commit 33f0c12
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ public MysqlExecutionRepository(ApplicationContext applicationContext, AbstractJ

@Override
protected Condition findCondition(String query) {
return this.jdbcRepository.fullTextCondition(Arrays.asList("namespace", "id"), query);
return this.jdbcRepository.fullTextCondition(Arrays.asList("namespace", "flow_id", "id"), query);
}
}

0 comments on commit 33f0c12

Please sign in to comment.