diff --git a/test/spec/fixtures/schema.sql b/test/spec/fixtures/schema.sql index be677e5f2..75aad252c 100644 --- a/test/spec/fixtures/schema.sql +++ b/test/spec/fixtures/schema.sql @@ -1,16 +1,7 @@ --- --- PostgreSQL database dump --- - --- Dumped from database version 9.5beta1 --- Dumped by pg_dump version 9.5beta1 - -SET statement_timeout = 0; -SET lock_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; SET check_function_bodies = false; -SET client_min_messages = warning; +-- Hide warnings because casts on domains would show a lot of: +-- WARNING: cast will be ignored because the source data type is a domain +SET client_min_messages = error; CREATE SCHEMA public; CREATE SCHEMA postgrest;