mirror of
https://github.com/doctrine/orm.git
synced 2026-03-23 22:42:18 +01:00
DDC-968: Query hints should be retrievable by user #1211
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 (Jan 3, 2011).
Originally assigned to: @beberlei on GitHub.
Jira issue originally created by user gediminasm:
Currently the only way to set additional parameters accessible by AST TreeWalker is using the query hints.
the main problem is then query is being cloned, hints are flushed and the only way to set them is to access them by name and feed to cloned query one by one.
I think there should be Query::getHints() method available to the userland