We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b11d275 commit bf3ca35Copy full SHA for bf3ca35
debug-blind.lua
@@ -20,7 +20,7 @@ use_sql_no_cache = 0
20
21
function nocache(query)
22
local word = string.upper(string.sub(query,1,6))
23
- if ( word == "SELECT" ) then
+ if ( word == "SELECT" and string.find(query, "SQL_NO_CACHE") == nil ) then
24
query = "SELECT SQL_NO_CACHE" .. query:sub(7)
25
end
26
return query
debug.lua
0 commit comments