pg_csv
pg_csv
pg_csv : Flexible CSV processing for Postgres
Overview
| ID | Extension | Package | Version | Category | License | Language |
|---|---|---|---|---|---|---|
| 4760 | pg_csv | pg_csv | 1.0.1 | FUNC | MIT | C |
| Attribute | Has Binary | Has Library | Need Load | Has DDL | Relocatable | Trusted |
|---|---|---|---|---|---|---|
--s-dtr | No | Yes | No | Yes | yes | yes |
| Relationships | |
|---|---|
| See Also | aggs_for_vecs first_last_agg arraymath intarray |
Packages
| Type | Repo | Version | PG Major Compatibility | Package Pattern | Dependencies |
|---|---|---|---|---|---|
| EXT | PGDG | 1.0.1 | 18 17 16 15 14 13 | pg_csv | - |
| RPM | PGDG | 1.0.1 | 18 17 16 15 14 13 | pg_csv_$v* | - |
| DEB | PIGSTY | 1.0.1 | 18 17 16 15 14 13 | postgresql-$v-pg-csv | - |
| Linux / PG | PG18 | PG17 | PG16 | PG15 | PG14 | PG13 |
|---|---|---|---|---|---|---|
el8.x86_64 | PGDG 1.0.1 | PGDG 1.0.1 | PGDG 1.0.1 | PGDG 1.0.1 | PGDG 1.0.1 | MISS |
el8.aarch64 | PGDG 1.0.1 | PGDG 1.0.1 | PGDG 1.0.1 | PGDG 1.0.1 | PGDG 1.0.1 | MISS |
el9.x86_64 | PGDG 1.0.1 | PGDG 1.0.1 | PGDG 1.0.1 | PGDG 1.0.1 | PGDG 1.0.1 | MISS |
el9.aarch64 | PGDG 1.0.1 | PGDG 1.0.1 | PGDG 1.0.1 | PGDG 1.0.1 | PGDG 1.0.1 | MISS |
el10.x86_64 | PGDG 1.0.1 | PGDG 1.0.1 | PGDG 1.0.1 | PGDG 1.0.1 | PGDG 1.0.1 | MISS |
el10.aarch64 | PGDG 1.0.1 | PGDG 1.0.1 | PGDG 1.0.1 | PGDG 1.0.1 | PGDG 1.0.1 | MISS |
d12.x86_64 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | MISS |
d12.aarch64 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | MISS |
d13.x86_64 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | MISS |
d13.aarch64 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | MISS |
u22.x86_64 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | MISS |
u22.aarch64 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | MISS |
u24.x86_64 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | MISS |
u24.aarch64 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | PIGSTY 1.0.1 | MISS |
Source
pig build pkg pg_csv; # build spec not readyInstall
Make sure PGDG repo available:
pig repo add pgdg -u # add pgdg repo and update cacheInstall this extension with pig:
pig install pg_csv; # install via package name, for the active PG version
pig install pg_csv -v 18; # install for PG 18
pig install pg_csv -v 17; # install for PG 17
pig install pg_csv -v 16; # install for PG 16
pig install pg_csv -v 15; # install for PG 15
pig install pg_csv -v 14; # install for PG 14Create this extension with:
CREATE EXTENSION pg_csv;Last updated on