mirror of
https://github.com/dimitri/pgloader.git
synced 2025-08-09 07:47:00 +02:00
When parsing table names in the target URI, we are careful of splitting the table and schema name and store them into a cons in that case. Not all sources methods got the memo, clean that up. See #182 and #186, a pull request I am now going to be able to accept. Also see #287 that should be helped by being able to apply #186.
10 lines
277 B
Fish
10 lines
277 B
Fish
/*
|
|
* The file comes from:
|
|
*
|
|
* http://www.insee.fr/fr/methodes/nomenclatures/cog/telechargement/2013/dbf/reg2013.dbf
|
|
*/
|
|
LOAD DBF
|
|
FROM data/reg2013.dbf with encoding cp850
|
|
INTO postgresql:///pgloader?public.reg2013
|
|
WITH truncate, create table, disable triggers;
|