From efda3eebfa7174af6e9e54eaf4247faa7c45cfb1 Mon Sep 17 00:00:00 2001 From: Dimitri Fontaine Date: Tue, 13 May 2014 11:57:03 +0200 Subject: [PATCH] Attempt at fixing #59 (sqlite double type casting). Blindly add a new type conversion in the SQLite code base to handle the source type DOUBLE and convert it to "double precision". --- src/sources/sqlite.lisp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/sources/sqlite.lisp b/src/sources/sqlite.lisp index 5b9f0de..89f51d3 100644 --- a/src/sources/sqlite.lisp +++ b/src/sources/sqlite.lisp @@ -135,6 +135,9 @@ ((string-equal "text" coltype) nil) + ((string-equal "double" coltype) + "double precision") + (t (compile nil (lambda (c) (when c