David Hoepelman

Results 13 issues of David Hoepelman

The following code: ``` table.take(10) .map(row => jsonbAgg(row.column.?)) .result.head ``` generates the following SQL: ``` SELECT jsonb_agg(x1.column) FROM table x1 LIMIT 10 ``` (jsonb is defines as templated in `PgAggFuncSupport`)...

This project hasn't been build on CircleCI since dec 20th, 2018. The project has valid CircleCI v2 configuration, so re-enabling is very simple. A maintainer can do this by going...

We've been using this library in combination with `require` to constrain our domain objects, but still get nice `JsError`s back. Unfortunately this does not work with `Jsonx.formatInline` ``` case class...

Minimal reproducing example: ``` public record Foo(String bar) { @SuppressWarnings("unused") public Foo {} } ``` ``` error-prone version: 2.15.0 BugPattern: AnnotationPosition Stack Trace: java.lang.IndexOutOfBoundsException: Range [869, 715) out of bounds...

This is a useful addition to the README since it's not documented currently.

[Ktor](https://ktor.io/) is a commonly used Kotlin HTTP server It would be good to have an integration with their [Request Validation](https://ktor.io/docs/server-request-validation.html) available.

enhancement
good first issue

Check whether the lib confirms to all [Kotlin library best practices](https://kotlinlang.org/docs/jvm-api-guidelines-introduction.html). Thinks to check: * [x] Explcit API mode * [x] Check kotlin version and JVM version best practices *...

good first issue
maintenance

- [x] This is a bug report - [ ] This is a feature request - [ ] I searched existing issues before opening this one ### Expected behavior hadolint...

The library currently has a very Java-ism interface and implementation separation. This complicated the code a lot, and caused me confusion when initially learning the library. I want to remove...

https://kotlinlang.org/docs/api-guidelines-backward-compatibility.html#use-the-binary-compatibility-validator

maintenance