Fixes regression where the search path did not recognize schemas with uppercase, spaces and other special characters in their names.
19 lines
345 B
Haskell
19 lines
345 B
Haskell
module Main (main) where
|
|
|
|
import Test.DocTest (doctest)
|
|
|
|
import Protolude
|
|
|
|
|
|
main :: IO ()
|
|
main =
|
|
doctest
|
|
[ "-XOverloadedStrings"
|
|
, "-XNoImplicitPrelude"
|
|
, "-XStandaloneDeriving"
|
|
, "-isrc"
|
|
, "src/PostgREST/Query/SqlFragment.hs"
|
|
, "src/PostgREST/Request/Preferences.hs"
|
|
, "src/PostgREST/Request/QueryParams.hs"
|
|
]
|