forked from chimpler/postgres-aws-s3
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
a. Fix uploaded records to ignore header chimpler#23 b. Minor Readme fixes + enhancements. chimpler#21 2. import support multi-file and directorys 3. import and export add read_timeout param 4. export_s3 add override param (if override will add _part{n} suffix) 5. export/import add tempfile_dir param
- Loading branch information
Showing
6 changed files
with
100 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,15 @@ | ||
v1.0.4 | ||
====== | ||
* Added support for aws_s3.query_export_to_s3 #12 [@darthbear] | ||
|
||
v1.0.3 | ||
====== | ||
* Fix for current postgres 12.* and s3 #11 [@phileon] | ||
|
||
v1.0.2 | ||
====== | ||
* Made column_list as optional parameter #6 [@oyarushe] | ||
|
||
v1.0.1 | ||
v1.0.0 | ||
====== | ||
|
||
* Added support of using custom S3 endpoint URL #4 [@oyarushe] | ||
* Add support for MinIO #3 [@huiser] | ||
* Made column_list as optional parameter #6 [@oyarushe] | ||
* Fix for current postgres 12.* and s3 #11 [@phileon] | ||
* Added support for aws_s3.query_export_to_s3 #12 [@darthbear] | ||
* Fix uploaded records to ignore header #23(https://github.com/chimpler/postgres-aws-s3/pull/23) [@tzachshabtay] | ||
* Minor Readme fixes + enhancements #21(https://github.com/chimpler/postgres-aws-s3/pull/21) [@GRBurst] | ||
* import support multi-file and directorys #1(https://github.com/radondb/postgres-aws-s3/pull/1) [@yanboer] [@lianzhuangzhang] | ||
* export not override file, if file exists will add _part{n} suffix #1(https://github.com/radondb/postgres-aws-s3/pull/1) [@yanboer] [@lianzhuangzhang] | ||
* import and export add read_timeout param #1(https://github.com/radondb/postgres-aws-s3/pull/1) [@yanboer] [@lianzhuangzhang] | ||
* export_s3 add override param #1(https://github.com/radondb/postgres-aws-s3/pull/1) [@yanboer] [@lianzhuangzhang] | ||
* export/import add tempfile_dir param #1(https://github.com/radondb/postgres-aws-s3/pull/1) [@yanboer] [@lianzhuangzhang] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# aws_s3 extension | ||
comment = 'aws s3 wrapper for non rds postgres' | ||
default_version = '0.0.1' | ||
default_version = '1.0.0' | ||
module_pathname = '$libdir/aws_s3' | ||
relocatable = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters