You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -81,6 +81,7 @@ aws_s3.table_import_from_s3 (
81
81
credentials aws_commons._aws_credentials_1,
82
82
endpoint_url text default null,
83
83
read_timeout integer default 60,
84
+
override boolean default false,
84
85
tempfile_dir text default '/var/lib/postgresql/data/'
85
86
)
86
87
```
@@ -96,6 +97,7 @@ s3_info | An aws_commons._s3_uri_1 composite type containing the bucket, file pa
96
97
credentials | An aws_commons._aws_credentials_1 composite type containing the access key, secret key, session token credentials. To omit a value, set it `null`.
97
98
endpoint_url | optional endpoint to use (e.g., `http://localhost:4566`)
98
99
read_timeout | The time in seconds till a timeout exception is thrown when attempting to read from a connection.The default is 60 seconds.
100
+
override | Whether to overwrite data. If true, will truncate table.
99
101
tempfile_dir | Specify temporary file location
100
102
101
103
##### Example
@@ -175,6 +177,7 @@ aws_s3.table_import_from_s3 (
175
177
session_token text,
176
178
endpoint_url text default null,
177
179
read_timeout integer default 60,
180
+
override boolean default false,
178
181
tempfile_dir text default '/var/lib/postgresql/data/'
179
182
)
180
183
```
@@ -192,6 +195,7 @@ secret_key | aws secret key
192
195
session_token | optional session token
193
196
endpoint_url | optional endpoint to use (e.g., `http://localhost:4566`)
194
197
read_timeout | The time in seconds till a timeout exception is thrown when attempting to read from a connection.The default is 60 seconds.
198
+
override | Whether to overwrite data. If true, will truncate table.
0 commit comments