yeshql
yeshql copied to clipboard
YesQL-style SQL database abstraction.
Fixes #13 Ok, so the underlying issue was already solved by another pull request. They just missed the dependency update in yeshql.cabal
On NixOS 20.03, with ghc865, I'll get the following output when invoking `cabal v2-build`: ``` Build profile: -w ghc-8.6.5 -O1 In order, the following will be built (use -v for...
Parsing SQL that contains comments with colons results in error. Herer it is a sample of SQL to reproduce the error: ``` [yesh1| -- name:getUser :: (String) -- :userID ::...
Currently it's not possible to refer to a type by its qualified name. For instance, ```haskell [yesh1| -- name:hello :: rowcount Int -- :arg :: Data.Int.Int ... |] ```
**Expected Behaviour** ```haskell [yesh| -- name: getMytable :: () select *, now() - '1 hour ago'::interval from mytable; |] ``` should generate ```sql select *, now() - '1 hour ago'::interval...