Back

schema (clj)

(source)

function

(schema quoting)
Given a quoting function, return a new quoting function that will process schema-qualified names by quoting each segment: ```clojure (mysql (name :foo.bar)) ;=> `foo.bar` ((schema mysql) (name :foo.bar)) ;=> `foo`.`bar` ```

Examples