Skip to content

Commit 5e3233c

Browse files
authored
Merge pull request #19006 from dmbelina/jbatch_partioned_nullable
Update entity for isPartitioned field
2 parents 057e99b + 36671b4 commit 5e3233c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/com.ibm.jbatch.container/src/com/ibm/jbatch/container/persistence/jpa/TopLevelStepInstanceEntity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public class TopLevelStepInstanceEntity extends StepThreadInstanceEntity {
4949
// This is meant to signify whether the step is partitioned or not.
5050
// It is not meant, in contract, to say whether for a partitioned step,
5151
// this object represents the top-level or partition-level thread of the partitioned step.
52-
@Column(name="PARTITIONED", nullable=false)
52+
@Column(name="PARTITIONED")
5353
private boolean isPartitionedStep;
5454

5555
// Not a useful constructor from the "real" flow of creating a step execution for the first time,

0 commit comments

Comments
 (0)