1
Fork 0

Update for base-4.11 compatibility.

This commit is contained in:
Jonas Scholl 2018-07-11 22:37:18 +02:00
parent 25982a78db
commit 9631a3d1ba

View file

@ -1,4 +1,5 @@
> {-# LANGUAGE CPP #-}
> -- | These is the pretty printing functions, which produce SQL
> -- source from ASTs. The code attempts to format the output in a
> -- readable way.
@ -9,6 +10,12 @@
> ,prettyStatements
> ) where
#if MIN_VERSION_base(4,11,0)
> import Prelude hiding ((<>))
#endif
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.