Dmitry Baev

Results 300 comments of Dmitry Baev

> I don't want to fix this issue in isolation (e.g. only for implicit joins) I rather expect a configuration option so `to_jsonb` is used instead of `row` when table...

yeah, agree. For the record: at first we use `asterisk()` for such case: ```java create.select(BOOK.author().asterisk(), BOOK.asterisk()) .from(BOOK) .fetch(r -> { AuthorRecord author = r.into(AUTHOR); BookRecord book = r.into(BOOK); ... });...

It may consume a lot of memory in case of huge classpath. In that case you need configure AspectJ to only process classes you need (for example, by specifying package...

> Allure.step is that the steps are not getting nested in the report when they should be. ```java step("first step", () -> { step("nested 1", () -> { // do...

Total is the time between start of the very first test and end of the very last one Sum is the sum of all tests durations Max is the max...

only results that visible in group. Usually retries are hidden, so the answer is not

Nope: ``` Feature 1 T1 T2 Feature 2 T3 T4 ``` if you run tests in single thread and the order is the following T1 -> T3 -> T2 ->...

> Thanks for the answer. In case we have multiple everything running in parallel, will `Total` be equal `Sum`? nope, see https://github.com/allure-framework/allure2/issues/1704#issuecomment-1192601120