Peter Rietzler
Peter Rietzler
``` gtt help edit Usage: gtt-edit [options] [id] Options: -h, --help output usage information ``` `gtt-edit` seems to be wrong
Would be cool to have this for traits ``` trait MyInterface { def id: Int name: String } val MyInterfaceType = deriveInterfaceType[Unit, MyInterface]() ``` I think that another solution that...
It would be cool if they were supported out of the box. Otherwise you could easily add something like this ``` /** * To be used similar to sangria derivation...
### What happened? **Step 1: Create a table `record_test` with a record column containing a numeric field** ``` [ { "name": "rec", "mode": "REQUIRED", "type": "RECORD", "fields": [ { "name":...
``` a|b "a"|"b" ``` currently formats to ``` a | b a | b ``` but it should format to ``` a | b "a" | "b" ```
e.g. ``` x|y "x-value"|"y-value" "xxx"|"yyy" ``` should format to ``` x | y "x-value" | "y-value" "xxx" | "yyy" ```
### What happened? Given that table `my_table` with a `TIMESTAMP` column `t`, the query `SELECT * FROM my_table WHERE t = ""` returns no results if `` does not contain...
Due to the fact that static methods are used in order to list, create, update etc... entities, we are forced to either talk to 1 Intercom app per Java application...
Steps to reproduce: Request an empty list (e.g. task of an empty project) def tasks = client.tasks.findByProject(projectId).iterator() assert tasks.hasNext() == true // should return false tasks.next() // throws a NoSuchElementException...
A usecase would be to configure the read and connect timeouts. Currently, the only possibility to do this is e.g. ```Java new Client(new AccessTokenDispatcher(personalAccessToken) { @Override public HttpRequest buildRequest(String method,...