We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
do
It's common to write SQL queries with Esqueleto without indent lines under a do, like this:
getJohns = select $ do people <- from $ table @Person where_ (people ^. PersonName ==. val "John") pure people
This style more closely resembles what you might write in plain SQL.
Running stylish-haskell on this fails however, with something like the following error message:
<string>:22:9: error: parse error on input `<-' Perhaps this statement should be within a 'do' block?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It's common to write SQL queries with Esqueleto without indent lines under a
do
, like this:This style more closely resembles what you might write in plain SQL.
Running stylish-haskell on this fails however, with something like the following error message:
The text was updated successfully, but these errors were encountered: