pgloader/test/ixf.load
Dimitri Fontaine c6b634caad Provide "on error stop" as a WITH option.
As seen in #546 it would be easier to be able to specify the option in the
load command directly rather than only at the command line. Here we go!
2017-06-01 16:43:09 +02:00

11 lines
294 B
Fish

LOAD IXF
FROM data/nsitra.test1.ixf
INTO postgresql:///pgloader?nsitra.test1
WITH on error stop, truncate, create table, timezone UTC
BEFORE LOAD DO
$$ drop schema if exists nsitra cascade; $$,
$$ create schema nsitra; $$,
$$ drop table if exists nsitra.test1; $$;