mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
fd637bf6be
commit
1dd9e547ce
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue