mirror of
https://github.com/dimitri/pgloader.git
synced 2025-08-09 15:56:58 +02:00
Travis: adapt to PostgreSQL 9.1, again.
We didn't have CREATE SCHEMA IF EXISTS at the time...
This commit is contained in:
parent
f109c3fdb4
commit
93b6be43d4
@ -29,7 +29,8 @@ LOAD CSV
|
|||||||
search_path to 'err' -- test GUC settings in retry path
|
search_path to 'err' -- test GUC settings in retry path
|
||||||
|
|
||||||
BEFORE LOAD DO
|
BEFORE LOAD DO
|
||||||
$$ create schema if not exists err; $$,
|
$$ drop schema if exists err cascade; $$,
|
||||||
|
$$ create schema err; $$,
|
||||||
$$ drop table if exists err.errors; $$,
|
$$ drop table if exists err.errors; $$,
|
||||||
$$ create table err.errors (
|
$$ create table err.errors (
|
||||||
a integer primary key,
|
a integer primary key,
|
||||||
|
Loading…
Reference in New Issue
Block a user