bind *print-length* to nil when printing lists/arrays to the database.
authorRuss Tyndall <russ@acceleration.net>
Mon, 24 Feb 2014 18:59:16 +0000 (13:59 -0500)
committerRuss Tyndall <russ@acceleration.net>
Mon, 24 Feb 2014 19:00:01 +0000 (14:00 -0500)
ChangeLog
sql/oodml.lisp

index d875bec1463a01e02b035874bad05f797cb8695f..fc146317369149311b37e41a10f8e9b2b487770f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-02-24 Russ Tyndall <russ@acceleration.net>
+       * oodml.lisp bind *print-length* to nil before printing
+       lists/arrays to the database.
+
 2014-01-30 Russ Tyndall <russ@acceleration.net>
        * sqlite3-sql.lisp specify :utf-8 as the default encoding if there
        is not one (allows :clsql-cffi to be closer to working for this
index 78c1a4f23fde5a04cda28523353fac1a4094648b..44c3e9ec6bc97c487107657255d593e7192437d0 100644 (file)
            ((list vector array)
             (let* ((*print-circle* t)
                    (*print-array* t)
+                   (*print-length* nil)
                    (value (prin1-to-string val)))
               value))
            (otherwise (call-next-method)))))))