Skip to content

Commit e5d0841

Browse files
committed
Polishing.
See #2514.
1 parent a69aa22 commit e5d0841

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/test/java/org/springframework/data/jpa/repository/query/QueryUtilsUnitTests.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -640,8 +640,9 @@ void applySortingAccountsForNativeWindowFunction() {
640640
"select * from (select * from user order by 1, 2, 3 desc limit 10) u order by u.active asc, age desc");
641641
}
642642

643-
@Test //GH-2511
643+
@Test // GH-2511
644644
void countQueryUsesCorrectVariable() {
645+
645646
String countQueryFor = createCountQueryFor("SELECT * FROM User WHERE created_at > $1");
646647
assertThat(countQueryFor).isEqualTo("select count(*) FROM User WHERE created_at > $1");
647648

0 commit comments

Comments
 (0)