mirror of
https://github.com/doctrine/orm.git
synced 2026-03-24 06:52:09 +01:00
DDC-2105: Error when rendering DQL query #2650
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @doctrinebot on GitHub (Oct 26, 2012).
Originally assigned to: @beberlei on GitHub.
Jira issue originally created by user marcosgdf:
I'm using Doctrine with Symfony 2.1. Everything was working OK in Symfony 2.0 so I think I was using Doctrine 2.2. Now I'm using Doctrine 2.3-dev (packagist) and when I run the following query in a EntityRepository:
Nothing happens, getResult() just returns array(0){}
I've done \Doctrine\Common\Util\Debug::dump($query); and this is the result:
As you can see something happens because the dql query got cropped and seems like Doctrine is not working properly...
If I change 'WHERE tc.timestamp >= :date_from AND tc.timestamp <= :date_to' for 'WHERE tc.timestamp BETWEEN :date_from AND :date_to', then the query is run without any problem and the debug dump function shows a complete debug of $query.
@doctrinebot commented on GitHub (Oct 29, 2012):
Comment created by @FabioBatSilva:
Hi Marcos,
Could you try to add a failing test case ?
Thanks ...
@doctrinebot commented on GitHub (Dec 23, 2012):
Comment created by marcosgdf:
Hi Fabio,
I've updated Doctrine and now it seems that everything works OK...
Thank you for your time... (and sorry) :S
@doctrinebot commented on GitHub (Dec 23, 2012):
Issue was closed with resolution "Invalid"