From 2dfb0269a451d4f9dbaca55ec0891e094b06be50 Mon Sep 17 00:00:00 2001 From: Dimitri Fontaine Date: Wed, 14 Jan 2015 23:39:01 +0100 Subject: [PATCH] Depend on current cl-csv master's version to fix #123. The bug is related to the processing of empty-lines in the middle of quoted text by cl-csv, which state machine has gotten quite complex to be able to handle all the crazy different csv variants out there. Testing shows the bug is fixed in pgloader by just updating cl-csv. --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index ad25ce2..ede62f6 100644 --- a/Makefile +++ b/Makefile @@ -74,6 +74,9 @@ $(QLDIR)/local-projects/qmynd: $(QLDIR)/local-projects/cl-ixf: git clone https://github.com/dimitri/cl-ixf.git $@ +$(QLDIR)/local-projects/cl-csv: + git clone https://github.com/AccelerationNet/cl-csv.git $@ + $(QLDIR)/local-projects/esrap: git clone -b wip-better-errors https://github.com/scymtym/esrap.git $@ @@ -87,6 +90,7 @@ $(QLDIR)/setup.lisp: quicklisp: $(QLDIR)/setup.lisp ; clones: $(QLDIR)/local-projects/cl-ixf \ + $(QLDIR)/local-projects/cl-csv \ $(QLDIR)/local-projects/qmynd \ $(QLDIR)/local-projects/esrap ;