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:
parent
2f12bc10ee
commit
9417775d11
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in New Issue