### Feature description Postgresql 17 added support for ignoring conflicts when loading data via copy using the [ON_ERROR option](https://www.postgresql.org/docs/current/sql-copy.html): ```sql COPY table FROM stdin WITH (ON_ERROR ignore); ``` Since COPY is a faster way to load data, supporting this would speed up many database operations. Right now the `OGR_PG_SKIP_CONFLICTS` option only functions when `PG_USE_COPY=NO`, perhaps this feature could be supported when both are set to `YES`. On the face of it, support would entail small updates to [OGRPGTableLayer::StartCopy](https://github.com/OSGeo/gdal/blob/master/ogr/ogrsf_frmts/pg/ogrpgtablelayer.cpp#L3437) and [OGRPGDumpLayer::StartCopy](https://github.com/OSGeo/gdal/blob/master/ogr/ogrsf_frmts/pgdump/ogrpgdumplayer.cpp#L754C8-L754C33). ### Additional context _No response_