Skip to content

Commit

Permalink
fix error (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
nevermore3 committed Nov 11, 2022
1 parent 4f44f7e commit 3036de3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public Map<String, Object> getQuery3Map(LdbcQuery3 operation) {
.put("countryXName", getConverter().convertString(operation.getCountryXName()))
.put("countryYName", getConverter().convertString(operation.getCountryYName()))
.put("startDate", getConverter().convertDateTime(operation.getStartDate()))
.put("durationDays", operation.getDurationDays())
.put("durationDays", getConverter().convertInteger(operation.getDurationDays()))
.build();
}

Expand Down

0 comments on commit 3036de3

Please sign in to comment.