去除语法检查告警 (#1973)

* Update loader.lua去除语法检查告警

* Update mysql.lua去除语法检查告警
This commit is contained in:
2024-08-30 12:33:30 +08:00
committed by GitHub
parent 839570ce3f
commit b1bb84ddbd
2 changed files with 3 additions and 3 deletions

View File

@@ -25,8 +25,8 @@ if not main then
end end
LUA_SERVICE = nil LUA_SERVICE = nil
package.path , LUA_PATH = LUA_PATH package.path , LUA_PATH = LUA_PATH, nil
package.cpath , LUA_CPATH = LUA_CPATH package.cpath , LUA_CPATH = LUA_CPATH, nil
local service_path = string.match(pattern, "(.*/)[^/?]+$") local service_path = string.match(pattern, "(.*/)[^/?]+$")

View File

@@ -820,7 +820,7 @@ end
local function _prepare_resp(self, sql) local function _prepare_resp(self, sql)
return function(sock) return function(sock)
return read_prepare_result(self, sock, sql) return read_prepare_result(self, sock)
end end
end end