mod_storage_sql: Strip timestamp precision in queries to fix error (thanks muppeth)

Fixes
Error in SQL transaction: Error executing statement parameters: ERROR:  invalid input syntax for integer

This was handled for INSERT in 9524bb7f3944 but not SELECT.
This commit is contained in:
Kim Alvefur 2022-09-07 12:27:12 +02:00
parent fd637bf6be
commit 1dd9e547ce

View file

@ -355,12 +355,12 @@ end
local function archive_where(query, args, where)
-- Time range, inclusive
if query.start then
args[#args+1] = query.start
args[#args+1] = math.floor(query.start);
where[#where+1] = "\"when\" >= ?"
end
if query["end"] then
args[#args+1] = query["end"];
args[#args+1] = math.floor(query["end"]);
if query.start then
where[#where] = "\"when\" BETWEEN ? AND ?" -- is this inclusive?
else