Evgenii
Evgenii
**Subsystem** ktor-server-core **Motivation** See: #1252 or [YouTrack Issue](https://youtrack.jetbrains.com/issue/KTOR-581) **Solution** Find of all routes of the http method using recursion DFS for a tree. Usage example: ``` val root = plugin(Routing)...
In addition to #1482, add an option to override GetUpdates generator
> The parser seems to die (`StackOverflowError`) with the below. The funny thing is that with a trailing comma after the inner array it doesn't error unlike my currently opened...
According to [TOML specification](https://toml.io/en/v1.0.0#array): > Arrays can contain values of the same data types as allowed in key/value pairs. **Values of different types may be mixed.** Example: ```toml nested_mixed_array =...
Idk, maybe it works well already. Anyway, we need to support the same tests as in #318
There's a couple of tests for it: ```kotlin @Test @Ignore fun arrayOfInlineTablesText() { @Serializable data class InlineTable(val value: Long) @Serializable data class File( @TomlInlineTable val inlineTablesA: List = (0L..2L).map(::InlineTable), val...
## Description ### Steps to reproduce 1. Table: ```sql CREATE TABLE test_table ( my_id Int64, is_bool Boolean ) ENGINE = ReplacingMergeTree ORDER BY (my_id); ``` 2. Kotlin data class: ```kotlin...