From 885a6da5a047128bbed311f3284bbfefeaf02f8a Mon Sep 17 00:00:00 2001 From: Dimitri Fontaine Date: Thu, 7 Nov 2013 15:48:45 +0100 Subject: [PATCH] Fix a bug in MySQL command execution when no BEFORE LOAD DO section is used. --- src/sources/mysql.lisp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sources/mysql.lisp b/src/sources/mysql.lisp index ed98596..17bab5a 100644 --- a/src/sources/mysql.lisp +++ b/src/sources/mysql.lisp @@ -205,6 +205,7 @@ (let* ((summary (null *state*)) (*state* (or *state* (make-pgstate))) (idx-state (or state-indexes (make-pgstate))) + (state-before (or state-before (make-pgstate))) (state-after (or state-after (make-pgstate))) (copy-kernel (make-kernel 2)) (dbname (source-db mysql))