Till
Till
Add a test to AcceptanceTests.AppendStream that fails for postgres but passes for all other DBs. This is to reproduce a bug with concurrent appends in postgres, see: https://github.com/SQLStreamStore/SQLStreamStore/issues/478
Sorry for making such a short PR, but I got confused by the doc string of map. It says map can only be used with total functions, but the type...
`try`-`catch` crashes for me. Here's a minimal failing example: ``` output= try throw SomeLabel {some= "thing"} catch is(SomeLabel) err => println("???") ``` The stack trace I get from this: ```...
In prelude/set.ptls both `difference` and `intersection` use a `for` comprehension on a set. Sadly, when I tried to use them, they crash :( It can easily be "fixed" by calling...
This is my attempt to solve #11. I added a call to `toList` to the map function that is being called by the `for` comprehension. That allows `for` to be...