Jan van Lindt Sulmont
Jan van Lindt Sulmont
This PR: * moves all Maven projects to java 11 * moves kafka-clients to 2.8.0 * moves kafka-connect to 2.8.0 * wraps call to `consumer.assignment()` to handle the case when...
The JSON form for [Q11](https://github.com/xtdb/xtdb/blob/2.x/modules/datasets/src/main/clojure/xtdb/datasets/tpch/xtql.clj#L195-L212) triggers the following internal server error: ``` 8..KqO.HTTP/1.1 500 Server Error Content-Type: application/json;charset=utf-8 Content-Length: 425 Server: Jetty(11.0.18) {"@type":"xt:error","@value":{"xtdb.error/message":"TODO what should literals in out specs do...
The JSON form of [Q12](https://github.com/xtdb/xtdb/blob/2.x/modules/datasets/src/main/clojure/xtdb/datasets/tpch/xtql.clj#L217) returns the following error: ``` {"@type":"xt:error","@value":{"xtdb.error/message":"Unknown symbol: '?hip_modes'","xtdb.error/class":"xtdb.IllegalArgumentException","xtdb.error/error-key":"xtdb.expression/unknown-symbol","xtdb.error/data":{"symbol":{"@type":"xt:symbol","@value":"?hip_modes"}}}} ``` The JSON form for ``` (in? l-shipmode $ship-modes) ``` is probably erroneous
In the [relation](https://docs.xtdb.com/reference/main/xtql/queries.html#_relation) section of the 2.x documentation, the following (incorrect) example is given: ``` ;; from a value in another document ;; assume we have a document {:xt/id ,...
How to reproduce: ``` (require '[xtdb.client :as xt.client] '[xtdb.api :as xt]) (let [node (xt.client/start-client "http://localhost:3000")] (doseq [i (iterate inc 1)] (xt/submit-tx node [[:put :users {:xt/id i :user-id (random-uuid) :name "yyeyeyeyeye"}]])...
Hi Could you please add [cl-transit ](https://github.com/jsulmont/cl-transit): a CL library for dealing with [transit-format](https://github.com/cognitect/transit-format). Thanks!
Surprisingly JZON fails to encode a dotted pair, as it assumes it will be able to call `length` on the `cdr` ```lisp (jzon:stringify '(1 . 2)) ```
* moved to intergrant 0.8.0
Greetings everyone. Thanks a lot for this cool project, very useful indeed. I have encountered the following *client side* issue: # summary * The problem happens, when a gRPC client...
Thanks for that neat lib!! `read-json-number` seems to behave incorrectly: ```lisp (let ((cl:*read-default-float-format* 'double-float)) (shasht:read-json "-3.14159")) ``` returns: ```lisp -3.1415900000000003d0 ``` when ```lisp (let ((cl:*read-default-float-format* 'long-float)) (read-from-string "-3.14159")) ``` returns:...