Skip to content

Commit

Permalink
Fix test for Postgres TestDistinctOnQuery
Browse files Browse the repository at this point in the history
  • Loading branch information
rbygrave committed Oct 21, 2024
1 parent 423d906 commit d77c14d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ void distinctOnSubQuery() {
.setMaxRows(10);

List<OrderDetail> lines = DB.find(OrderDetail.class)
.select("product, orderQty, shipQty, created")
.select("product, orderQty, shipQty, cretime")
.where().in("id", subQuery)
.orderBy().asc("cretime")
.findList();
Expand Down

0 comments on commit d77c14d

Please sign in to comment.