From 93b6be43d4422c33b2644a69fbfea6b0b9b031cd Mon Sep 17 00:00:00 2001 From: Dimitri Fontaine Date: Mon, 23 Nov 2015 22:09:08 +0100 Subject: [PATCH] Travis: adapt to PostgreSQL 9.1, again. We didn't have CREATE SCHEMA IF EXISTS at the time... --- test/errors.load | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/errors.load b/test/errors.load index 965e4d8..afacac5 100644 --- a/test/errors.load +++ b/test/errors.load @@ -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,