From bfaf996265f8c7ff4eb1e603d9124ab665f93028 Mon Sep 17 00:00:00 2001 From: Dimitri Fontaine Date: Sun, 13 Oct 2013 21:35:49 +0200 Subject: [PATCH] Bugfix pgloader.pgsql::retry-batch (typo, forgot the columns). --- pgsql.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgsql.lisp b/pgsql.lisp index 801fb2a..03f861d 100644 --- a/pgsql.lisp +++ b/pgsql.lisp @@ -470,7 +470,7 @@ Finally returns how many rows where read and processed." (current-batch-size (smaller-batch-size batch-size processed-rows)) (stream - (cl-postgres:open-db-writer conspec table-name ))) + (cl-postgres:open-db-writer conspec table-name columns))) (log-message :debug "pgsql:retry-batch: current-batch-size = ~d" current-batch-size)