mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
storagemanager, mod_storage_sql: Rename methods to :get_all() and :delete_all()
This commit is contained in:
parent
81f5c3e319
commit
cb6148d155
3 changed files with 20 additions and 20 deletions
|
@ -230,9 +230,9 @@ function map_store:set_keys(username, keydatas)
|
|||
return result;
|
||||
end
|
||||
|
||||
function map_store:find_key(key)
|
||||
function map_store:get_all(key)
|
||||
if type(key) ~= "string" or key == "" then
|
||||
return nil, "find_key only supports non-empty string keys";
|
||||
return nil, "get_all only supports non-empty string keys";
|
||||
end
|
||||
local ok, result = engine:transaction(function()
|
||||
local query = [[
|
||||
|
@ -258,9 +258,9 @@ function map_store:find_key(key)
|
|||
return result;
|
||||
end
|
||||
|
||||
function map_store:delete_key(key)
|
||||
function map_store:delete_all(key)
|
||||
if type(key) ~= "string" or key == "" then
|
||||
return nil, "delete_key only supports non-empty string keys";
|
||||
return nil, "delete_all only supports non-empty string keys";
|
||||
end
|
||||
local ok, result = engine:transaction(function()
|
||||
local delete_sql = [[
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue