Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
Merge pull request #886 from egovernments/debasishchakraborty-egovt-p…
Browse files Browse the repository at this point in the history
…atch-5

Update WsQueryBuilder.java Added conn.createdtime in order by
  • Loading branch information
pradeepkumarcm-egov authored Aug 7, 2024
2 parents 8c3ad62 + b877b16 commit 7a3e5a1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,7 @@ private String addPaginationWrapperForPlaneSearch(String query, List<Object> pre

private String addOrderByClauseForPlaneSearch(SearchCriteria criteria) {
StringBuilder builder = new StringBuilder();
builder.append(" ORDER BY wc.appCreatedDate ");
builder.append(" ORDER BY conn.createdTime");
if (criteria.getSortOrder() == SearchCriteria.SortOrder.ASC)
builder.append(" ASC ");
else
Expand Down

0 comments on commit 7a3e5a1

Please sign in to comment.