Skip to content

Commit bf3ca35

Browse files
committed
Avoid duplicate SQL_NO_CACHE
1 parent b11d275 commit bf3ca35

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

debug-blind.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ use_sql_no_cache = 0
2020

2121
function nocache(query)
2222
local word = string.upper(string.sub(query,1,6))
23-
if ( word == "SELECT" ) then
23+
if ( word == "SELECT" and string.find(query, "SQL_NO_CACHE") == nil ) then
2424
query = "SELECT SQL_NO_CACHE" .. query:sub(7)
2525
end
2626
return query

debug.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ use_sql_no_cache = 0
2020

2121
function nocache(query)
2222
local word = string.upper(string.sub(query,1,6))
23-
if ( word == "SELECT" ) then
23+
if ( word == "SELECT" and string.find(query, "SQL_NO_CACHE") == nil ) then
2424
query = "SELECT SQL_NO_CACHE" .. query:sub(7)
2525
end
2626
return query

0 commit comments

Comments
 (0)