Fix another useless use of loop.

This commit is contained in:
Dimitri Fontaine 2014-05-11 18:49:31 +02:00
parent 223199e866
commit 6d92dc251f

View File

@ -13,7 +13,7 @@
;;; call here.
;;;
(defun format-vector-row (stream row
&optional (transforms (loop for c across row collect nil)))
&optional (transforms (make-list (length row))))
"Add a ROW in the STREAM, formating ROW in PostgreSQL COPY TEXT format.
See http://www.postgresql.org/docs/9.2/static/sql-copy.html#AEN66609 for