Commit 3cd02740 authored by lsmith's avatar lsmith

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

parent 82f0e5f9
......@@ -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();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment