Tianxiang Xiong
Tianxiang Xiong
Oracle's [`XMLSERIALIZE`](https://docs.oracle.com/database/121/SQLRF/functions268.htm#SQLRF06231) differs from the parser's expectations in that it has a `CONTENT` keyword. The following example doesn't parse: ```sql SELECT XMLSERIALIZE(CONTENT XMLTYPE('Grandco')) AS xmlserialize_doc FROM DUAL; ``` ``` 2....
## Expected behavior `clojure-sort-ns` should handle the whole ns form, including `:gen-class`. ## Actual behavior `clojure-sort-ns` chokes on forms like `:gen-class`. ## Steps to reproduce the problem Create a `.clj`...
## Expected behavior `cljr-clean-ns` does not remove used import. ## Actual behavior In a CLJS file, given the following: ```clojure (ns foo.bar (:import [goog.i18n NumberFormat] [goog.i18n.NumberFormat Format])) (defn money [n]...
I recall that another `re-frame` inspector (`re-frame-trace`? Or maybe [`re-frisk`](https://github.com/flexsurfer/re-frisk)?) allowed the user to get the raw EDN of e.g. DB state. I find this faster than having to horizontally...
Is there any interest in adding [Postgres JSON functions and operators](https://www.postgresql.org/docs/9.6/static/functions-json.html)? E.g. I've been using the following in my own code: ```clojure (require '[clojure.string :as str]) (require '[honeysql.format :as h-format])...
When multiple queries are declared in a query document but the chosen operation doesn't reference a schema that requires a variable, there is a parse error. Given the following schema,...
I've several different services in the same monorepo. Each has some `defstate`s, but I don't want to start _all_ states, only those extending from some core namespace for a particular...
See #28.
There are a lot of macros in this very useful library & it'd be nice if they were indented properly w/ IDEs like [CIDER](https://github.com/clojure-emacs/cider). See [indent specs](https://docs.cider.mx/cider/indent_spec.html) for CIDER.
I've a [test project](https://github.com/xiongtx/sparktest) I'm trying to get working, but I can't figure out what's wrong. After building an uberjar, I submit it to a local standalone Spark cluster: ```sh...