From d2d4be2ed060862636a9386353f498f58d3765d5 Mon Sep 17 00:00:00 2001 From: Dimitri Fontaine Date: Sat, 9 Sep 2017 00:59:39 +0200 Subject: [PATCH] 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. --- test/csv-guess.load | 1 - 1 file changed, 1 deletion(-) diff --git a/test/csv-guess.load b/test/csv-guess.load index 98462f7..267a528 100644 --- a/test/csv-guess.load +++ b/test/csv-guess.load @@ -6,7 +6,6 @@ LOAD CSV WITH truncate BEFORE LOAD DO - $$ create schema if not exists csv; $$, $$ drop table if exists csv.track; $$, $$ create table csv.track ( trackid bigserial primary key,