1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

Fixing sequence-generate in XmlDriver

This commit is contained in:
Jonathan H. Wage 2010-04-29 08:13:02 -04:00
parent de72db2a7a
commit 41e830ca68

View file

@ -203,9 +203,9 @@ class XmlDriver extends AbstractFileDriver
if (isset($idElement->{'sequence-generator'})) { if (isset($idElement->{'sequence-generator'})) {
$seqGenerator = $idElement->{'sequence-generator'}; $seqGenerator = $idElement->{'sequence-generator'};
$metadata->setSequenceGeneratorDefinition(array( $metadata->setSequenceGeneratorDefinition(array(
'sequenceName' => $seqGenerator->{'sequence-name'}, 'sequenceName' => (string)$seqGenerator['sequence-name'],
'allocationSize' => $seqGenerator->{'allocation-size'}, 'allocationSize' => (string)$seqGenerator['allocation-size'],
'initialValue' => $seqGeneratorAnnot->{'initial-value'} 'initialValue' => (string)$seqGeneratorAnnot['initial-value']
)); ));
} else if (isset($idElement->{'table-generator'})) { } else if (isset($idElement->{'table-generator'})) {
throw MappingException::tableIdGeneratorNotImplemented($className); throw MappingException::tableIdGeneratorNotImplemented($className);