HHH-16314 - Skip NativeQueryResultTypeAutoDiscoveryTest#dateTimeTypes for Sybase

(cherry picked from commit 48c59392f6)
This commit is contained in:
Steve Ebersole 2023-04-25 09:06:01 -05:00
parent 140bd03adf
commit 41b7ce23ce
1 changed files with 1 additions and 0 deletions

View File

@ -286,6 +286,7 @@ public class NativeQueryResultTypeAutoDiscoveryTest {
@Test
@SkipForDialect(dialectClass = OracleDialect.class, reason = "Oracle maps DATE and TIME to TIMESTAMP")
@SkipForDialect(dialectClass = PostgresPlusDialect.class, reason = "EDB maps DATE and TIME to TIMESTAMP")
@SkipForDialect(dialectClass = SybaseDialect.class, reason = "Sybase maps DATE and TIME to TIMESTAMP", matchSubTypes = true)
public void dateTimeTypes() {
createEntityManagerFactory(
DateEntity.class,