Last active
February 28, 2018 15:35
-
-
Save lambdahands/5d773934b4918d5f7b38f02bcba63f9b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns sql-formatter.core) | |
(def phrases | |
{:begin-clauses #{"left" "right" "inner" "outer" "group" "order"} | |
:end-clauses #{"where" "set" "having" "join" "from" "onto" "union"} | |
:logical #{"and" "or" "when" "else" "end"} | |
:quantifiers #{"in" "all" "exists" "some" "any"} | |
:dml #{"insert" "update" "delete"} | |
:misc #{"select" "on"}}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment