From ca968e62e4b130ff4c13c64ac2016e07dfd82164 Mon Sep 17 00:00:00 2001 From: Dimitri Fontaine Date: Wed, 6 Nov 2013 15:49:09 +0100 Subject: [PATCH] Some more clean-up. --- src/run.lisp | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 src/run.lisp diff --git a/src/run.lisp b/src/run.lisp deleted file mode 100644 index 2450a5f..0000000 --- a/src/run.lisp +++ /dev/null @@ -1,18 +0,0 @@ -;;; facility to easily run the program - -(ql:quickload :pgloader) -(in-package :pgloader) - -(setq *myconn-host* "localhost" - *myconn-user* "debian-sys-maint" - *myconn-pass* "vtmMI04yBZlFprYm") - -(loop - for test in (list #'pgloader.mysql:stream-database - #'pgloader.mysql:export-database - #'pgloader.mysql:export-import-database) - do - (format t "~&~%Testing ~a:~%~%" test) - (funcall test "yagoa" :only-tables '("membres" "sav_themes"))) - -