Merge pull request #140 from seancorfield/master

Address #138 : add priority for union/union-all
This commit is contained in:
Michael Blume 2016-09-17 16:26:45 -07:00 committed by GitHub
commit 3cdaa5ef96

View file

@ -174,7 +174,9 @@
(def default-clause-priorities
"Determines the order that clauses will be placed within generated SQL"
{:with 30
{:union 20
:union-all 25
:with 30
:with-recursive 40
:select 50
:insert-into 60