mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_storage_sql2: Keep available store types in a table
This commit is contained in:
parent
06561ae513
commit
1e1834a4ec
1 changed files with 7 additions and 2 deletions
|
@ -217,11 +217,16 @@ function keyval_store:users()
|
|||
return iterator(result);
|
||||
end
|
||||
|
||||
local stores = {
|
||||
keyval = keyval_store;
|
||||
};
|
||||
|
||||
local driver = {};
|
||||
|
||||
function driver:open(store, typ)
|
||||
if not typ then -- default key-value store
|
||||
return setmetatable({ store = store }, keyval_store);
|
||||
local store_mt = stores[typ or "keyval"];
|
||||
if store_mt then
|
||||
return setmetatable({ store = store }, store_mt);
|
||||
end
|
||||
return nil, "unsupported-store";
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue