admin管理员组文章数量:1345073
Say I have 2 SQLs:
select if(some_cond, some_varchar, some_large_text) from foo
select if(some_cond, some_varchar, md5(some_large_text)) from foo
Does the MySQL engine actually retrieve some_large_text
, even if some_cond
evaluates to true
?
If the arguments are evaluated lazily, then none of these 2 SQLs would read some_large_text
. If it's passed by reference, then only the second SQL would need to.
In the worst case, if it's passed by value, then how could I avoid the unnecessary cost of reading some_large_text
?
Further investigation:
For builtin functions, their C++ implementation decides if an argument is evaluated. Like here in the mysql source code, the builtin SHA2(data, bits)
function has an early return when args[0]
is null, in which case args[1]
would not be evaluated.
It can be proved by this example.
Say I have 2 SQLs:
select if(some_cond, some_varchar, some_large_text) from foo
select if(some_cond, some_varchar, md5(some_large_text)) from foo
Does the MySQL engine actually retrieve some_large_text
, even if some_cond
evaluates to true
?
If the arguments are evaluated lazily, then none of these 2 SQLs would read some_large_text
. If it's passed by reference, then only the second SQL would need to.
In the worst case, if it's passed by value, then how could I avoid the unnecessary cost of reading some_large_text
?
Further investigation:
For builtin functions, their C++ implementation decides if an argument is evaluated. Like here in the mysql source code, the builtin SHA2(data, bits)
function has an early return when args[0]
is null, in which case args[1]
would not be evaluated.
It can be proved by this example.
Share Improve this question edited yesterday yyyy asked yesterday yyyyyyyy 6683 silver badges10 bronze badges 5 |1 Answer
Reset to default 1In general, function arguments are sent by value and all arguments are evaluated.
But IF
is not an ordinary function, it's a flow-control function. These functions only evaluate the arguments that are needed based on the condition. MySQL IF()
is similar to the ?:
ternary operator in C and PHP.
This allows you to write expressions that would get an error in one of the arguments depending on the condition:
IF(n = 0, 0, x / n)
The IF
function is basically just a short form of a CASE
expression:
CASE WHEN n = 0 THEN 0
ELSE x / n
END
I believe that this type of argument processing is only available to these built-in functions, you can't write a user-defined function that doesn't have all its arguments evaluated.
本文标签: sqlAre MySQL function arguments passed by valueby reference or lazyStack Overflow
版权声明:本文标题:sql - Are MySQL function arguments passed by value, by reference or lazy? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743791129a2539590.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
some_cond
is true then none expression retrieves yoursome_large_text
value. From the other side, when you access the row then the whole row is loaded into memory unconditionally, including thosesome_large_text
part which is stored within the row record, whereas the overflow pages are retrieved only when the value must be used (i.e. whensome_cond
is true). – Akina Commented yesterday