diff options
author | Matthew Wild <mwild1@gmail.com> | 2020-03-11 16:32:41 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2020-03-11 16:32:41 +0000 |
commit | f2ac7bdb8053c3cc984eabcd077583e0ae8c0da2 (patch) | |
tree | 02615b481f420a642185570584bfbedd0cb35a15 /plugins | |
parent | 335ce1bf2ad08c54bc0ad41a535c0a7f8b60b4b1 (diff) | |
download | prosody-f2ac7bdb8053c3cc984eabcd077583e0ae8c0da2.tar.gz prosody-f2ac7bdb8053c3cc984eabcd077583e0ae8c0da2.zip |
storagemanager, mod_storage_sql: Rename methods to :get_all() and :delete_all()
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_storage_sql.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/mod_storage_sql.lua b/plugins/mod_storage_sql.lua index a75b832d..accfa2df 100644 --- a/plugins/mod_storage_sql.lua +++ b/plugins/mod_storage_sql.lua @@ -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 = [[ |