r2122: fix package export error
[clsql.git] / interfaces / postgresql / postgresql-usql.cl
index 4633f390e964b57cb4d8a7fd3a2dd267e8a24552..3919dde261c560276b5349348b71bb7b198002dd 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmers:   Kevin M. Rosenberg and onShore Development Inc
 ;;;; Date Started:  Mar 2002
 ;;;;
-;;;; $Id: postgresql-usql.cl,v 1.4 2002/05/15 17:10:28 kevin Exp $
+;;;; $Id: postgresql-usql.cl,v 1.5 2002/06/12 17:47:13 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;; and by onShore Development Inc.
 
 (defmethod database-output-sql-as-type ((type (eql 'integer)) val
                                        (database postgresql-database))
-  ;; typecast it so it uses the indexes
-  (when val
+  (when val   ;; typecast it so it uses the indexes
     (make-instance 'clsql-sys::sql-typecast-exp
                    :modifier 'int8
                    :components val)))