From 9512ab187ece1c491aeb3c0a18821973ca5e0e6b Mon Sep 17 00:00:00 2001 From: Dimitri Fontaine Date: Sat, 20 Feb 2016 14:13:22 +0100 Subject: [PATCH] Fix the fix, see #343. Someday I should either stop working on pgloader in between other things or have a better test suite, including MS SQL and all. Probably both. And read compiler notes and warnings too, while at that... --- src/sources/mssql/mssql-schema.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sources/mssql/mssql-schema.lisp b/src/sources/mssql/mssql-schema.lisp index 43b965a..9540780 100644 --- a/src/sources/mssql/mssql-schema.lisp +++ b/src/sources/mssql/mssql-schema.lisp @@ -260,9 +260,9 @@ ORDER BY KCU1.CONSTRAINT_NAME, KCU1.ORDINAL_POSITION" (format-table-name ;; for code re-use, create a table instance here. (make-table - :source-name (cons "~" fschema ftable) + :source-name (cons fschema ftable) :name (apply-identifier-case ftable) - :schema fshema)) + :schema fschema)) :foreign-columns (list fcol))) (fkey (maybe-add-fkey table fkey-name pg-fkey :key #'pgloader.pgsql::pgsql-fkey-name)))