1
0
Fork 0
mirror of synced 2025-04-13 06:01:02 +00:00
doctrine2/tests/Doctrine
Marco Pivetta 23af164d7a Note: this will still lead to the UnitOfWork#getSingleIdentifierValue() still being
called when not specifying the type of a DQL parameter being bound via
`Doctrine\ORM\Query#setParameter()`:

```php
$query->setParameter('foo', $theValue, $theType);
```

A full parameter bind is required in order to gain back performance:

```php
$query->setParameter('foo', $theValue, $theType);
```

This is up for discussion with patch reviewers.
2018-12-16 18:05:02 +01:00
..
Performance Correcting the SimpleInsertPerformanceBench, which was running into duplicate record integrity constraint violations when run with >1 revs 2017-08-26 16:41:03 +02:00
Tests Note: this will still lead to the UnitOfWork#getSingleIdentifierValue() still being 2018-12-16 18:05:02 +01:00