Skip to content

Releases: CrunchyData/pg_parquet

v0.5.1

01 Oct 16:36
253bfa2

Choose a tag to compare

What's Changed

Full Changelog: v0.5.0...v0.5.1

v0.5.0

25 Sep 14:28
dcf6fc0

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.4.3...v0.5.0

v0.4.3

27 Aug 17:04
ef5ed57

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.4.2...v0.4.3

v0.4.2

13 Aug 20:17
d03dd92

Choose a tag to compare

What's Changed

Full Changelog: v0.4.1...v0.4.2

v0.4.1

22 Jul 12:22
b533b24

Choose a tag to compare

What's Changed

Full Changelog: v0.4.0...v0.4.1

v0.4.0

06 May 09:48
9092f65

Choose a tag to compare

Important Changes

New Contributors

Full Changelog: v0.3.1...v0.4.0

v0.3.2

18 Apr 18:59

Choose a tag to compare

Important Changes

Full Changelog: v0.3.1...v0.3.2

v0.3.0

24 Feb 14:42
2f0e2a8

Choose a tag to compare

This is pg_parquet v0.3.0, which supports COPY TO/FROM Azure Blob Storage and caches connections per session and bucket.

Important Changes

  • Supports COPY TO/FROM Azure Blob Storage (fcb5036),
  • Caches remote connections per Postgres session and bucket (3ff46d5),
  • Adds basic support for writing geoparquet metadata (30fb0c6),
  • Fixes memory leak during COPY FROM huge tables (2c1a62d),
  • Skips unrecognized or unsupported uri schemes instead of throwing error (2f0e2a8),
  • Disallows special numerics +-Inf or NaN (e775b0e).

Full Changelog: v0.2.0...v0.3.0

v0.2.0

17 Dec 14:34
fd51bed

Choose a tag to compare

This is pg_parquet v0.2.0, which supports Postgres(14-15) and introduces some useful features which improve overall usability. We also have few changing behavior.

Important Changes

  • pg14 and pg15 is supported (#57),
  • Improvements and fixes on copying numeric type (#65),
  • Support coercions during COPY FROM parquet. This lets it work seamlessly even if the parquet schema and table's schema is slightly different but coercible (#76),
  • Adds match_by option for COPY FROM. Parquet schema and table schema can now be matched by position or name (#80),
  • AWS_ENDPOINT_URL and AWS_SESSION_TOKEN works for s3 object store (#84).

Breaking Changes

  • Default behavior change in matching parquet and table schemas. By default, match by field position instead of field name (#80),
  • COPY TO/FROM will not work if pg_parquet extension is not created or when it is dropped (#85),
  • numeric column, which does not specify precision and scale, is written as numeric(38,9) to parquet file (#86).

Full Changelog: v0.1.0...v0.2.0