Nikita Glushchenko

Results 15 comments of Nikita Glushchenko

both links you provided are to the same app

What I found is following(within `Wisteria.default()` macro), when trying to run some derivation for sum: ``` TypeRepr.of[ProductType] == wisteria.DefaultTest.First & wisteria.DefaultTest ``` it seems like the original `DefaultTest.First` type is...

@propensive You've joined it correctly. I'm not sure how the type subsumption should work exactly, but I think compiler doesn't understand that there's a subsumption because of this (SumDerivationMethods.scala, line...

Additions to investigation: 1. original scalamock library has similar issue: https://github.com/paulbutcher/ScalaMock/issues/131 2. our workaround: what I'm doing in scalamock in scala2 is actually wildcard matching these repeated parameters: having method:...

> use `" "` to quote it? @He-Pin quote what and where?

Hi, `WHERE (city0.name IN (?, ?, ?))` and `WHERE (city0.name IN (VALUES (?), (?), (?)))` is essentially the same and for me returns the same results using e.g. Postgres. Do...

I think oracle dbms is not supported at the moment. And I don't know if there are any plans to do so

On a tooling spree with @jkciesluk and @AlterEgo7 we have found following: 1. as a part of import process metals send command to mill-bsp to compile `mill.build` file 2. compilation...

looks like guys over at mill are planning to revamp bsp server, and it suppose to fix this issue as well. I'll monitor and close this issue when it's there