mod_storage_sql: Adjust indentation to align with surrounding code

This commit is contained in:
Kim Alvefur 2023-06-17 13:36:42 +02:00
parent 02469e4e8e
commit 935f28230a

View file

@ -310,9 +310,9 @@ function archive_store:append(username, key, value, when, with)
item_count_cache_miss();
local ok, ret = engine:transaction(function()
local count_sql = [[
SELECT COUNT(*) FROM "prosodyarchive"
WHERE "host"=? AND "user"=? AND "store"=?;
]];
SELECT COUNT(*) FROM "prosodyarchive"
WHERE "host"=? AND "user"=? AND "store"=?;
]];
local result = engine:select(count_sql, host, user, store);
if result then
for row in result do