Alanna Stone

Results 180 comments of Alanna Stone

Just as a data point, I've used those in third-party code so that I could make one combined import for cats implicits + my library implicits + another library implicits,...

Thanks, that looks like the sort of thing I wanted, and definitely the right place to land if I wanted to add more direct code gen support. Do you know...

@plokhotnyuk From the tweet, it sounds like that goes from code=>schema; I'd like to go the other direction. I have a schema that describes an api I don't control, and...

I'm having a hard time finding the feature in their docs - I'm looking for something that lets me: - from a json schema file I already have - generate...

If the `acyclic` imports defined some `def workaroundUnusedImportWarning: Unit = ()` then would that solve the problem? File level imports could then ```scala import acyclic.file object MyClass { file.workaroundUnusedImportWarning ```

Confirmed that this is still broken as of today

I have a preliminary `JdbcProfile` extension class that builds off of slick-pg's `ExPostgresProfile` that allows what you want @vkuharsky but due to https://github.com/pgjdbc/pgjdbc/issues/783 you must set `reWriteBatchedInserts = false`. If...

It's merged into slick-pg, but it's fairly rudimentary. You can get `ON CONFLICT (pkey) DO UPDATE SET (all..) = EXCLUDED.(all..)`. You can't use another constraint and you can't customize the...

If you are not using H2 in production you shouldn't use H2 in your tests. I recommend using the `postgres` docker image. There's some sbt plugins, or testcontainers-scala for orchestrating...

I have a draft solution for this here; it fits an internal api we're using for the moment but once I get it tested I should hopefully be able to...