We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37c071f commit 3af493aCopy full SHA for 3af493a
hibernate-core/src/test/java/org/hibernate/orm/test/jdbc/util/BasicFormatterTest.java
@@ -53,7 +53,7 @@ public void testNoLoss() {
53
}
54
55
@Test
56
- @FailureExpected( jiraKey = "HHH-15125")
+// @FailureExpected( jiraKey = "HHH-15125")
57
public void testProblematic() {
58
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" );
59
@@ -65,6 +65,7 @@ private void assertNoLoss(String query) {
65
66
log.debugf( "Original: {}", query );
67
log.debugf( "Formatted: {}", formattedQuery );
68
+ System.out.println( formattedQuery );
69
70
while ( formatted.hasMoreTokens() && plain.hasMoreTokens() ) {
71
String plainToken = plain.nextToken();
0 commit comments