Also show quoting/not-quoting and table.col forms

This commit is contained in:
Sean Corfield 2021-03-15 16:54:13 -07:00
parent 73c2062d6e
commit 13d62b4ac1

View file

@ -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)))
.)