From 3cd0274063c3fe9d36f43f053f8f3c96f2156db6 Mon Sep 17 00:00:00 2001 From: lsmith Date: Thu, 10 Jan 2008 13:25:31 +0000 Subject: [PATCH] - DQL still uses the CONCAT() and not the || syntax --- tests/Query/ExpressionTestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Query/ExpressionTestCase.php b/tests/Query/ExpressionTestCase.php index e4f7e8c67..ab4404592 100644 --- a/tests/Query/ExpressionTestCase.php +++ b/tests/Query/ExpressionTestCase.php @@ -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();