Fix test/csv-guess.load for old PostgreSQL.

In travis environment we still test with PostgreSQL 9.1 and 9.6, and there's
no reason for this test to use a modern spelling of create schema, after
all.

It works because the test/csv-before-after.load creates the schema and is
ran before test/csv-guess.load. That's good enough for now.
This commit is contained in:
Dimitri Fontaine 2017-09-09 00:59:39 +02:00
parent 38712d98e0
commit d2d4be2ed0

View File

@ -6,7 +6,6 @@ LOAD CSV
WITH truncate WITH truncate
BEFORE LOAD DO BEFORE LOAD DO
$$ create schema if not exists csv; $$,
$$ drop table if exists csv.track; $$, $$ drop table if exists csv.track; $$,
$$ create table csv.track ( $$ create table csv.track (
trackid bigserial primary key, trackid bigserial primary key,