From 13d62b4ac1fc631b05582e960005ed04dca8411e Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Mon, 15 Mar 2021 16:54:13 -0700 Subject: [PATCH] Also show quoting/not-quoting and table.col forms --- src/honey/sql.cljc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/honey/sql.cljc b/src/honey/sql.cljc index 573d051..2b64011 100644 --- a/src/honey/sql.cljc +++ b/src/honey/sql.cljc @@ -169,8 +169,10 @@ (str (q t) ".")))) (comment - (for [v [:foo-bar 'foo-bar "foo-bar"] a [true false] d [true false]] - (binding [*dialect* (:mysql dialects)] + (for [v [:foo-bar 'foo-bar "foo-bar" + :f-o.bar 'f-o.bar "f-o.bar"] + a [true false] d [true false] q [true false]] + (binding [*dialect* (:mysql dialects) *quoted* q] (format-entity v :aliased a :drop-ns d))) .)