From ff760e12de890e0cd05b8c8a14aebd2f86454cea Mon Sep 17 00:00:00 2001 From: Frank Henard Date: Tue, 28 Jan 2014 14:25:43 -0600 Subject: [PATCH] remove debugging --- src/honeysql/format.clj | 1 - 1 file changed, 1 deletion(-) diff --git a/src/honeysql/format.clj b/src/honeysql/format.clj index 7ff284d..7c22de6 100644 --- a/src/honeysql/format.clj +++ b/src/honeysql/format.clj @@ -318,7 +318,6 @@ (str "SELECT " (-handle-select fields sql-map))) (defmethod format-clause :select-top [[_ [limit-count fields]] sql-map] - (println "limit-count = " limit-count "; fields = " fields "; sql-map = " sql-map) (str "SELECT TOP " limit-count " " (-handle-select fields sql-map))) (defmethod format-clause :from [[_ tables] _]