Greg Hale
Greg Hale
I couldn't reproduce this on https://imalsogreg.github.com/commonmark-editor  fwiw. I can try later reproducing it with the commonmark CLI
`shared` references `DefaultKey` because we might have types that have foreign keys embedded in them. In that case, I follow the pattern in the documentation, where that is a `DefaultKey...
The solution here is that the user would put CPP in their cabal file to conditionally bring in `groundhog-ghcjs` instead of `groundhog-th` and `groundhog`, right? This is a nice, pretty...
Ah, ok. For a use case like ours I see that would work. Only if you wanted to put the `common` package on hackage, then you would have to pick...
Yep, exactly. ghcjs comes with its own `base` that includes replacements for Text and ByteString https://github.com/ghcjs/ghcjs-base. There's somehow an js replacement for gmp. C depending libraries generally require some kind...
@lykahb Correct - the c yaml parser is the only place where `groundhog-th` breaks under ghcjs. `groundhog` compiles as is. `groundhog-postgresql` won't compile at all. We could have a fully...
It would make sense to put the ghcjs yaml shim in the haskell `yaml` package itself, except that the `yaml` package provides a better interface with better error reporting than...
There's now a pure haskell yaml parser: http://hackage.haskell.org/package/HsYAML-0.1.0.0
No problem @lykahb :) Thanks for checking! I have at least a workaround for now. Rather than write a `instance ConnectionManager App`, I just use the instance from the connection...
We discovered that `fetch_all` within a transaction does not exhibit the bug. The bugged behavior only appears when using `fetch_one` or `fetch_optional`, and only within a transaction. While trying to...