Skip to content

Commit 3af493a

Browse files
committed
failure no longer expected for test
1 parent 37c071f commit 3af493a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

hibernate-core/src/test/java/org/hibernate/orm/test/jdbc/util/BasicFormatterTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public void testNoLoss() {
5353
}
5454

5555
@Test
56-
@FailureExpected( jiraKey = "HHH-15125")
56+
// @FailureExpected( jiraKey = "HHH-15125")
5757
public void testProblematic() {
5858
assertNoLoss( "select * from ((select e.id from Entity e union all select e.id from Entity e) union select e.id from Entity e) grp" );
5959
}
@@ -65,6 +65,7 @@ private void assertNoLoss(String query) {
6565

6666
log.debugf( "Original: {}", query );
6767
log.debugf( "Formatted: {}", formattedQuery );
68+
System.out.println( formattedQuery );
6869

6970
while ( formatted.hasMoreTokens() && plain.hasMoreTokens() ) {
7071
String plainToken = plain.nextToken();

0 commit comments

Comments
 (0)