-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AbstractQuery::getSingleScalarResult() throws exception when no result #7871
Conversation
An option could be to deprecate it in favor of a new method with a clearly defined contract, backed up with tests, but that would imply finding a new name for that method, and inconsistency with other methods, unless we mass deprecate the methods in |
I'm not sure what the plans are for 3.0, but still, it could be nice to fix the inconsistency on this method in the 2.x releases. An plan could be:
|
👍
I'm afraid this method has a quite big usage, such a change could have a really big impact, that's why I was leaning towards a deprecation. Regarding the fix: what if there is a record that matches the |
IDK, I was just suggesting to make the behaviour right by respecting the documented contract (I'd personally only use it for non-nullable columns), but I don't really mind if it throws instead. |
I know this is a tad confusing but This means that it's completely fine for With that said, |
But that means that if I call How weird. |
You're guaranteed since it does change the configuration of the hydration mode. I quickly debugged things and saw that the exception is actually thrown by What I think happened here is that, when introducing the Since the code in |
When executing a "must-be exactly one" operation, any result that is not exactly 1 should throw an exception. This is a good standard practice that most parts of Doctrine have borrowed from Hibernate. So the code is indeed correct and the comments were wrong. Merging the patch! Thanks!!! =D |
Please don't merge this PR yet, I think there's a lot of confusion around the current behaviour, that must be cleared first.
The current doc for
AbstractQuery::getSingleScalarResult()
says:Even though it currently throws an exception in this case. I tested this myself, and it is confirmed by this test:
https://github.com/doctrine/orm/blob/v2.6.4/tests/Doctrine/Tests/ORM/Functional/QueryTest.php#L339
This PR fixes the docblock.
That being said, I'm really confused by this code:
https://github.com/doctrine/orm/blob/v2.6.4/lib/Doctrine/ORM/AbstractQuery.php#L805
This looks like the method wants to behave as the doc says, by not throwing when the hydration mode is
HYDRATE_SINGLE_SCALAR
, but because it does not test against the$hydrationMode
parameter, but against$this->_hydrationMode
, the behaviour is not as expected.From what I can see in the code, it should, deeply nested in some method calls,
setHydrationMode()
to the value provided as a parameter at some point, but it looks like it doesn't.So in summary:
getSingleScalarResult()
throws an exception by default,null
instead, ifsetHydrationMode(HYDRATE_SINGLE_SCALAR)
has been called on the Query before thatSo I'm not sure whether fixing the docblock is the right thing to do, we should probably fix the code so that it behaves consistently instead, by always returning
null
forHYDRATE_SINGLE_SCALAR
; but this could break existing code that, despite the doc, may now rely on this "feature", which is even backed by a test.Thoughts?