File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
hibernate-core/src/test/java/org/hibernate/orm/test/query/sqm Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 15
15
import jakarta .persistence .Tuple ;
16
16
17
17
import org .hibernate .ScrollMode ;
18
+ import org .hibernate .dialect .HANADialect ;
18
19
import org .hibernate .engine .spi .SessionImplementor ;
19
20
import org .hibernate .query .IllegalSelectQueryException ;
20
21
import org .hibernate .query .SelectionQuery ;
24
25
import org .hibernate .testing .orm .junit .DomainModel ;
25
26
import org .hibernate .testing .orm .junit .SessionFactory ;
26
27
import org .hibernate .testing .orm .junit .SessionFactoryScope ;
28
+ import org .hibernate .testing .orm .junit .SkipForDialect ;
27
29
import org .junit .jupiter .api .AfterEach ;
28
30
import org .junit .jupiter .api .Test ;
29
31
38
40
annotatedClasses = BasicSelectionQueryTests .DummyEntity .class
39
41
)
40
42
@ SessionFactory
43
+ @ SkipForDialect ( dialectClass = HANADialect .class , reason = "HANA does not support scrollable results" )
41
44
public class BasicSelectionQueryTests {
42
45
@ Test
43
46
public void typedEntitySelectTest (SessionFactoryScope scope ) {
You can’t perform that action at this time.
0 commit comments