cranst0n
cranst0n
Is it be possible to take a case class and turn it into a `List [String]` that would generate the given case class?
Is it possible to set a border when using an ArcView?
Adds a codec for the postgresql [ltree](https://www.postgresql.org/docs/current/ltree.html) type.
This is likely only an issue for my dev setup but I mentioned the issue in chat and wanted to follow up here in the event anyone else runs into...
Preliminary crack at adding PostGIS codecs, using the PostGIS JDBC driver types. I based of this stuff on the way PostGIS support is done in doobie. Note that this changes...
Given: ``` scala // AnalysisSpec case class Foo(bar: Long, baz: Int, shenanigans: Array[Byte] = Array[Byte]()) val q0 = sql"""select f.bar, f.baz, f.shenanigans from Foo f""".query[Foo] val q1 = sql"""select f.bar,...
For your consideration. I've had a few situations where this constructor would be handy.
I just realized I really goofed up the `flatTap` signature when I implemented it a while back. This fixes the signature so the dependent task takes the computed value as...