test: Create csv schema in partial.load

This commit is contained in:
Christoph Berg 2022-06-24 10:39:15 +02:00
parent e2418891a4
commit e234ff188e

View File

@ -24,6 +24,7 @@ LOAD CSV
standard_conforming_strings to 'on'
BEFORE LOAD DO
$$ create schema if not exists csv; $$,
$$ drop table if exists csv.partial; $$,
$$ create table csv.partial (
a integer unique,