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:
Strong Liu 2010-04-05 13:27:47 +00:00
parent 7123491afe
commit 2f12bc10ee
1 changed files with 5 additions and 0 deletions

View File

@ -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();