From 110c31e2bcefa8398ab76fd9c47fd297046cf311 Mon Sep 17 00:00:00 2001 From: Starks Date: Wed, 22 Jul 2015 13:50:03 +0200 Subject: [PATCH] quoting of AS clauses should not be splitted on "." quoting of AS clauses should not be splitted on "." --- src/honeysql/format.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/honeysql/format.clj b/src/honeysql/format.clj index 590bfc7..1fae10b 100644 --- a/src/honeysql/format.clj +++ b/src/honeysql/format.clj @@ -303,7 +303,7 @@ " AS " " ") (if (string? (second x)) - (quote-identifier (second x)) + (quote-identifier (second x) :split false) (to-sql (second x)))))) SqlCall (to-sql [x]