Richard Dallaway

Results 75 comments of Richard Dallaway

Hello @rfuerst87 - just wanted to let you know that Dave, Miles, and I are mostly going to be tied up on work and conference preparation for a while. So...

I've been (manually) seeing what a simple record might look like with slickless in a branch. Nothing much to see: https://github.com/underscoreio/slickless/compare/feature/18-records-experiments (but everything is in [RecordShapeSpec.scala](https://github.com/underscoreio/slickless/blob/b3bc4f70a90a78f8011594ecf806e45853bb3603/src/test/scala/slickless/RecordShapeSpec.scala)) From what I recall...

Thank you @julienrf Looks like I can implement a local scope version of `owritesLabelledHListOpt` and replace... ```scala case None => Map.empty ``` ...with... ```scala case None => Map(adaptedName -> JsNull)...

Regarding my comment for the EU cookie stuff, I'm fine and don't need any changes. Regarding the original request from @KenMcDonald, I believe that would be in relation to [the...

FYI: regarding Postgres, there's a PR open in the Postgres JDBC driver to detect batch inserts and re-write them: https://github.com/pgjdbc/pgjdbc/pull/491

@davecramer I've done some quick testing with a local `mvn package -DskipTests` of [the batch-rewite-03 branch](https://github.com/whitingjr/pgjdbc/commits/batch-rewrite-03). Providing I modify my JDBC connection to use `?reWriteBatchedInserts=true` and run my insert in...

Regarding avoiding custom profiles... I wonder if a "new type" style a good alternative, as a workaround. This isn't perfect by any means, but may be useful in some cases....