Skip to content

Commit 272d8a0

Browse files
committed
squash! add tests for table partitioning with 'options' and @PartitionKey
1 parent 92c509f commit 272d8a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hibernate-core/src/test/java/org/hibernate/orm/test/sql/partition/Db2PartitionedTableTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ class Db2PartitionedTableTest {
3737
options =
3838
"""
3939
PARTITION BY RANGE (pid) (
40-
PART p1 STARTING FROM (0) ENDING BEFORE (1000),
41-
PART p2 STARTING FROM (1000) ENDING BEFORE (2000)
40+
STARTING FROM (0) ENDING AT (1000),
41+
ENDING AT (2000)
4242
)
4343
""")
4444
static class Partitioned {

0 commit comments

Comments
 (0)