From b374d4bc8bf4c3772ad4699169ca8849d36959ca Mon Sep 17 00:00:00 2001 From: Dimitri Fontaine Date: Thu, 23 Jan 2014 23:28:25 +0100 Subject: [PATCH] The current retry method has no need for *copy-batch-split*. --- src/params.lisp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/params.lisp b/src/params.lisp index 27921c4..bc7b0be 100644 --- a/src/params.lisp +++ b/src/params.lisp @@ -13,7 +13,6 @@ #:*log-min-messages* #:*copy-batch-rows* #:*copy-batch-size* - #:*copy-batch-split* #:*pgconn-host* #:*pgconn-port* #:*pgconn-user* @@ -57,12 +56,9 @@ ;;; ;;; How to split batches in case of data loading errors. ;;; -(defparameter *copy-batch-rows* 25000 +(defparameter *copy-batch-rows* 2500 "How many rows to batch per COPY transaction") -(defparameter *copy-batch-split* 5 - "Number of batches in which to split a batch with bad data") - ;;; ;;; We need that to setup our default connection parameters ;;;