Fixed DDC-557 - Default allocation size for sequences changed from 10 to 1. Documented in UPGRADE file
This commit is contained in:
parent
bbf18bbc17
commit
434325ed4f
@ -1,3 +1,10 @@
|
||||
# Update from 2.0-BETA2 to 2.0-BETA3
|
||||
|
||||
## Default Allocation Size for Sequences
|
||||
|
||||
The default allocation size for sequences has been changed from 10 to 1. This step was made
|
||||
to not cause confusion with users and also because it is partly some kind of premature optimization.
|
||||
|
||||
# Update from 2.0-BETA1 to 2.0-BETA2
|
||||
|
||||
There are no backwards incompatible changes in this release.
|
||||
|
@ -119,7 +119,7 @@ final class JoinTable extends Annotation {
|
||||
}
|
||||
final class SequenceGenerator extends Annotation {
|
||||
public $sequenceName;
|
||||
public $allocationSize = 10;
|
||||
public $allocationSize = 1;
|
||||
public $initialValue = 1;
|
||||
}
|
||||
final class ChangeTrackingPolicy extends Annotation {}
|
||||
|
Loading…
Reference in New Issue
Block a user