DDC-1490 - Fix id generation of sequence and identity to cast values to int
This commit is contained in:
parent
01697fee3d
commit
5aeabcb445
2 changed files with 6 additions and 6 deletions
|
@ -46,7 +46,7 @@ class IdentityGenerator extends AbstractIdGenerator
|
||||||
*/
|
*/
|
||||||
public function generate(EntityManager $em, $entity)
|
public function generate(EntityManager $em, $entity)
|
||||||
{
|
{
|
||||||
return $em->getConnection()->lastInsertId($this->_seqName);
|
return (int)$em->getConnection()->lastInsertId($this->_seqName);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -46,7 +46,7 @@ class SequenceGenerator extends AbstractIdGenerator implements Serializable
|
||||||
$this->_sequenceName = $sequenceName;
|
$this->_sequenceName = $sequenceName;
|
||||||
$this->_allocationSize = $allocationSize;
|
$this->_allocationSize = $allocationSize;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Generates an ID for the given entity.
|
* Generates an ID for the given entity.
|
||||||
*
|
*
|
||||||
|
@ -60,11 +60,11 @@ class SequenceGenerator extends AbstractIdGenerator implements Serializable
|
||||||
// Allocate new values
|
// Allocate new values
|
||||||
$conn = $em->getConnection();
|
$conn = $em->getConnection();
|
||||||
$sql = $conn->getDatabasePlatform()->getSequenceNextValSQL($this->_sequenceName);
|
$sql = $conn->getDatabasePlatform()->getSequenceNextValSQL($this->_sequenceName);
|
||||||
|
|
||||||
$this->_nextValue = $conn->fetchColumn($sql);
|
$this->_nextValue = (int)$conn->fetchColumn($sql);
|
||||||
$this->_maxValue = $this->_nextValue + $this->_allocationSize;
|
$this->_maxValue = $this->_nextValue + $this->_allocationSize;
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->_nextValue++;
|
return $this->_nextValue++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -99,7 +99,7 @@ class SequenceGenerator extends AbstractIdGenerator implements Serializable
|
||||||
public function unserialize($serialized)
|
public function unserialize($serialized)
|
||||||
{
|
{
|
||||||
$array = unserialize($serialized);
|
$array = unserialize($serialized);
|
||||||
|
|
||||||
$this->_sequenceName = $array['sequenceName'];
|
$this->_sequenceName = $array['sequenceName'];
|
||||||
$this->_allocationSize = $array['allocationSize'];
|
$this->_allocationSize = $array['allocationSize'];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue