From 8becf05803fcba4cca9827340e1aafffc8437505 Mon Sep 17 00:00:00 2001 From: Dimitri Fontaine Date: Thu, 5 Jun 2014 01:00:33 +0200 Subject: [PATCH] Register "real" datatype to the existing float transformation. Attempt at fixing #73. --- src/sources/sqlite.lisp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sources/sqlite.lisp b/src/sources/sqlite.lisp index d4e7d7a..c93ef2f 100644 --- a/src/sources/sqlite.lisp +++ b/src/sources/sqlite.lisp @@ -136,6 +136,7 @@ ;; objects, where we only want to deal with text. ;; (cond ((or (string-equal "float" coltype) + (string-equal "real" coltype) (string-equal "double precision" coltype) (and (<= 7 (length coltype)) (string-equal "numeric" coltype :end2 7)))