In SQL you can include the quote character within an identifier name by repeating it, e.g. ```sql `schemer`.`the-table`.`doug``s mug` ``` ```clojure {:schema "schemer" :table "the-table" :column "doug`s mug"} ``` Metabase solves this with a slightly more complex [quote stripper](https://github.com/metabase/metabase/blob/19a756e6adee2985ac373ea39e210d1bf78af084/src/metabase/native_query_analyzer.clj#L57-L63) which we should be able to simply pilfer.