On Wed, Jan 8, 2020 at 7:11 AM Christian Beikov <christian.beikov(a)gmail.com>
wrote:
Am 08.01.2020 um 13:50 schrieb Steve Ebersole:
> On Wed, Jan 8, 2020 at 6:09 AM Christian Beikov
> <christian.beikov(a)gmail.com <mailto:christian.beikov@gmail.com>> wrote:
>
> If a user enters a HQL literal, that user wants the literal to be
> rendered like that if possible(which should always be possible).
>
>
> Like I said earlier, we actually try to render literals (of any type)
> as parameters whenever we can (which is almost always possible)
IMO this should be configurable and I personally would prefer rendering
as SQL literal as I'd argue people would generally only use a literal if
they really want a literal i.e. not append a literal in a dynamic way
like `"FROM Entity e WHERE e.active = " + someBoolean`. Such a query
might be better off with a parameter. Why do you prefer rendering
literals as parameter?
It is controllable. Actually this part is not new to 6. We added that
previously. Vlad pulled it back from 6 into 5 back, although unfortunately
put it in a bad package and for some reason chose to name it differently.
So 5.x has `org.hibernate.query.criteria.LiteralHandlingMode`. 6.0
deprecates that in favor of
`org.hibernate.query.QueryLiteralRendering`
I'm not sure I'd classify all usages of literals as you do. I think there
are a fair amount of people who do it simply because its easier and more
concise.
Most DBMS can better optimize a query plan when encountering literals
vs. parameters e.g. choose a partial index or have better estimates.
The
trade-off is performance for possibly "worse" statement cache hit rate.
I'd argue people would just use parameters if they want possible
statement sharing or better caching.
Exactly, although a few additional thoughts:
1. Passing along the literals as-is means possibly having SQL injection
issues. We'd really need to validate the content of the literal value.
Parameters are safe from such injection attacks.
2. The cases where the database optimizer can build a "better" plan
using a literal versus a parameter is generally pretty small. I can think
of partition columns, tenancy columns - things of that nature. You
think its more broad?