X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=sql%2Ftime.lisp;h=c767018285e4e38b34361de77a0464ba4a778c01;hb=8032ca50e601511d03908b6d20c7fd3fb9725437;hp=8cc77241b14ac8a2c31b6a06e43854799c270484;hpb=56f742e5470609250c9c842b3ae258c267d3902d;p=clsql.git diff --git a/sql/time.lisp b/sql/time.lisp index 8cc7724..c767018 100644 --- a/sql/time.lisp +++ b/sql/time.lisp @@ -938,13 +938,14 @@ with the given options" (let ((mjd (time-mjd date)) (sec (time-second date)) (usec (time-usec date))) - (multiple-value-bind (usec-new sec) + (multiple-value-bind (sec-new usec-new) (floor (+ usec (* 1000000 (+ sec second (* 60 minute) (* 60 60 hour)))) 1000000) + (declare (ignore sec-new)) (multiple-value-bind (mjd-new sec-new) (floor sec (* 60 60 24)) (if destructive