Travis: adapt to PostgreSQL 9.1, again.

We didn't have CREATE SCHEMA IF EXISTS at the time...
This commit is contained in:
Dimitri Fontaine 2015-11-23 22:09:08 +01:00
parent f109c3fdb4
commit 93b6be43d4

View File

@ -29,7 +29,8 @@ LOAD CSV
search_path to 'err' -- test GUC settings in retry path
BEFORE LOAD DO
$$ create schema if not exists err; $$,
$$ drop schema if exists err cascade; $$,
$$ create schema err; $$,
$$ drop table if exists err.errors; $$,
$$ create table err.errors (
a integer primary key,