- DQL still uses the CONCAT() and not the || syntax
This commit is contained in:
parent
82f0e5f92c
commit
3cd0274063
@ -52,7 +52,7 @@ class Doctrine_Query_Expression_TestCase extends Doctrine_UnitTestCase
|
||||
$q = new Doctrine_Query();
|
||||
|
||||
try {
|
||||
$q->parseQuery('SELECT u.name || u.unknown FROM User u');
|
||||
$q->parseQuery('SELECT CONCAT(u.name, u.unknown) FROM User u');
|
||||
|
||||
$q->execute();
|
||||
$this->fail();
|
||||
|
Loading…
x
Reference in New Issue
Block a user