HHH-4976 Ingres 9.3 does not support sub-selects in the select list.

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19167 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Strong Liu 2010-04-05 13:29:17 +00:00
parent 2f12bc10ee
commit 9417775d11
1 changed files with 4 additions and 0 deletions

View File

@ -1605,6 +1605,10 @@ public class ASTParserLoadingTest extends FunctionalTestCase {
}
public void testImplicitPolymorphism() {
if(getDialect() instanceof IngresDialect){
//HHH-4976 Ingres 9.3 does not support sub-selects in the select list.
return;
}
Session s = openSession();
Transaction t = s.beginTransaction();