r4950: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Thu, 15 May 2003 07:47:01 +0000 (07:47 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Thu, 15 May 2003 07:47:01 +0000 (07:47 +0000)
debian/changelog
uffi/clsql-uffi.lisp

index 3db57f93b897e4776ad4935b07b7c93ac2113c6a..419c16defa8acdd5f550d8f2f2ebbeb8d40a42dc 100644 (file)
@@ -1,6 +1,6 @@
 cl-sql (1.6.0-1) unstable; urgency=low
 
-  * Optimize string conversion for mysql string fields at the expense
+  * Optimize native string conversion at the expense
   of ignoring locales on Allegro and Lispworks.
 
  -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 15 May 2003 01:32:52 -0600
index 3c4c8180e23e9736587da7ea3a3c83fc02719c82..aa75cf1df3313108d71059085d313abf9115bb9b 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmers:   Kevin M. Rosenberg
 ;;;; Date Started:  Mar 2002
 ;;;;
-;;;; $Id: clsql-uffi.lisp,v 1.7 2003/05/15 07:39:42 kevin Exp $
+;;;; $Id: clsql-uffi.lisp,v 1.8 2003/05/15 07:45:17 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
                  low32
                  (make-64-bit-integer high32 low32)))))
         (t
+         ;; Choose optimized routine
+         #-(or cmu sbcl)
          (native-to-string char-ptr)
-         #+ignore
+         #+(or cmu sbcl)
          (uffi:convert-from-foreign-string char-ptr)))))))