1
0
mirror of synced 2024-12-14 07:06:04 +03:00

Fixed DDC-557 - Default allocation size for sequences changed from 10 to 1. Documented in UPGRADE file

This commit is contained in:
Benjamin Eberlei 2010-06-13 20:09:59 +02:00
parent bbf18bbc17
commit 434325ed4f
2 changed files with 8 additions and 1 deletions

View File

@ -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.

View File

@ -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 {}