JakeWheat / simple-sql-parser

SQL parser in Haskell
http://jakewheat.github.io/simple-sql-parser/latest
Other
82 stars 29 forks source link

With pretty printer prints "as" twice #23

Closed agentm closed 5 years ago

agentm commented 5 years ago

The pretty printer for a simple "With" expression round-trips this:

WITH x AS...

to:

WITH AS x AS...
JakeWheat commented 5 years ago

Thanks. I need to work out why the testing didn't catch this - it should have.

JakeWheat commented 5 years ago

fixed in 0.6.0 release