02241130创建于 2021年6月9日历史提交
LOAD IXF
    FROM data/nsitra.test1.ixf
    INTO postgresql:///pgloader
    TARGET TABLE 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; $$;