1
0
mirror of synced 2025-01-18 22:41:43 +03:00

- DQL still uses the CONCAT() and not the || syntax

This commit is contained in:
lsmith 2008-01-10 13:25:31 +00:00
parent 82f0e5f92c
commit 3cd0274063

View File

@ -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();