COPY 中的 postgres 转储文件缺少列

postgres dump file missing column in COPY

转储文件*。sql 给出错误

ERROR:  missing data for column "year"
CONTEXT:  COPY entity_temporal, line 1: "Stroud_railway_station {1947, 1845, 1886} {1, 1, 1}"

我的 table 名字是 entity_temporal,有三列 Name textyear integer[]count integer[]。 转储命令看起来像

COPY entity_temporal (name, year, count) FROM stdin;
Stroud_railway_station {1947, 1845, 1886} {1, 1, 1}

据我所知,您的数据格式不正确。每个 列值 下一行 之间应该有 制表符 space [=15] =]新行.

您可以阅读 ,问题提供了指向包含正确数据格式的文件的链接。