HHH-4977 Ingres 9.3 does not support sub-selects in the select list.
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19166 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
7123491afe
commit
2f12bc10ee
|
@ -1710,6 +1710,11 @@ public class ASTParserLoadingTest extends FunctionalTestCase {
|
|||
}
|
||||
|
||||
public void testOneToManyFilter() throws Throwable {
|
||||
if ( getDialect() instanceof IngresDialect ) {
|
||||
// HHH-4977 Ingres 9.3 does not support sub-selects in the select
|
||||
// list.
|
||||
return;
|
||||
}
|
||||
Session session = openSession();
|
||||
Transaction txn = session.beginTransaction();
|
||||
|
||||
|
|
Loading…
Reference in New Issue