Update for base-4.11 compatibility.
This commit is contained in:
parent
25982a78db
commit
9631a3d1ba
|
@ -1,4 +1,5 @@
|
||||||
|
|
||||||
|
> {-# LANGUAGE CPP #-}
|
||||||
> -- | These is the pretty printing functions, which produce SQL
|
> -- | These is the pretty printing functions, which produce SQL
|
||||||
> -- source from ASTs. The code attempts to format the output in a
|
> -- source from ASTs. The code attempts to format the output in a
|
||||||
> -- readable way.
|
> -- readable way.
|
||||||
|
@ -9,6 +10,12 @@
|
||||||
> ,prettyStatements
|
> ,prettyStatements
|
||||||
> ) where
|
> ) where
|
||||||
|
|
||||||
|
#if MIN_VERSION_base(4,11,0)
|
||||||
|
|
||||||
|
> import Prelude hiding ((<>))
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
TODO: there should be more comments in this file, especially the bits
|
TODO: there should be more comments in this file, especially the bits
|
||||||
which have been changed to try to improve the layout of the output.
|
which have been changed to try to improve the layout of the output.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue