02241130创建于 2021年6月9日历史提交
/*
 * This test is ported from pgloader 2.x where it was defined as:
 *
 * [simple_tmpl]
 * template     = True
 * format       = text
 * datestyle    = dmy
 * field_sep    = |
 * trailing_sep = True
 * 
 * [xzero]
 * use_template    = simple_tmpl
 * table           = xzero
 * filename        = xzero/xzero.data
 * columns         = a:1, b:3, c:2
 * skip_head_lines = 2
 * null            = 
 */

LOAD CSV
     FROM inline 
        (a, c, b [ null if '' ], trailing)
     INTO postgresql:///pgloader?xzero (a, b, c)

     WITH skip header = 2,
          fields optionally enclosed by '"',
          fields escaped by double-quote,
          fields terminated by '|'

      SET client_encoding to 'latin1',
          datestyle to 'dmy',
          work_mem to '12MB',
          standard_conforming_strings to 'on'

   BEFORE LOAD DO
   $$ drop table if exists xzero; $$,
   $$ create table xzero (
       a integer primary key,
       b date,
       c text
      );
   $$;




This is a stupid useless header like you sometime find in CSV files
id|data|date|
1|some first row text|2006-11-11|
2|some second row text|13/11/2006|
3|some third row text|12-10-2006|
4|\ |2006-10-4|
5|some fifth row text|2006-5-12|
6|some sixth row text|10/7/6|
7|some null date to play with||