Skip to content

Commit

Permalink
#39 [Update] 시/군/구 조회시 정확하게 일치하는 값만 찾도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Anna-Jin committed Jul 26, 2022
1 parent 4b2c4e3 commit 7282a3f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public static BooleanExpression matchAddress(String sido, String sigungu) {
}
return Expressions.numberTemplate(
Integer.class,
"function('match', {0}, {1}, {2})", store.address, store.address, sido + " " + sigungu).gt(0);
"function('match', {0}, {1}, {2})", store.address, store.address, sido + " +" + sigungu).gt(0);
}

public static BooleanExpression matchKeyword(String keyword) {
Expand Down

0 comments on commit 7282a3f

Please sign in to comment.