Arve Nygård
Arve Nygård
Was asked to create an issue: ```kotlin val input = """{"hi" : "hello"}""" val output = Klaxon().parse(input) // com.beust.klaxon.KlaxonException: // Couldn't find a suitable constructor for class Map to initialize...
In many cases it would be nice to have an overload for `queryOf()` / `actionReturing()` that takes an _extractor function_ / _row mapper_, e.g. ```kotlin data class Statement { //...
In a scenario where we try to deserialize a `@SqlJsonValue` to a nullable field, where the database row contains the jsonb value `'null'`, (i.e. not SQL-null but json-null), the deserialization...