@@ -150,7 +150,7 @@ downloaded jar file is the same as the checksum provided in the releases.
150150To check the SHA256 result of the local jar, run the command:
151151
152152``` sh
153- sha256sum exasol-cloud-storage-extension-2.9.5 .jar
153+ sha256sum exasol-cloud-storage-extension-2.9.6 .jar
154154```
155155
156156### Building From Source
@@ -180,7 +180,7 @@ mvn clean package -DskipTests=true
180180```
181181
182182The assembled jar file should be located at
183- ` target/exasol-cloud-storage-extension-2.9.5 .jar ` .
183+ ` target/exasol-cloud-storage-extension-2.9.6 .jar ` .
184184
185185### Create an Exasol Bucket
186186
@@ -202,7 +202,7 @@ for the HTTP protocol.
202202Upload the jar file using curl command:
203203
204204``` sh
205- curl -X PUT -T exasol-cloud-storage-extension-2.9.5 .jar \
205+ curl -X PUT -T exasol-cloud-storage-extension-2.9.6 .jar \
206206 http://w:< WRITE_PASSWORD> @exasol.datanode.domain.com:2580/< BUCKET> /
207207```
208208
@@ -237,7 +237,7 @@ OPEN SCHEMA CLOUD_STORAGE_EXTENSION;
237237
238238CREATE OR REPLACE JAVA SET SCRIPT IMPORT_PATH(...) EMITS (...) AS
239239 %scriptclass com .exasol .cloudetl .scriptclasses .FilesImportQueryGenerator;
240- %jar / buckets/ bfsdefault/ < BUCKET> / exasol- cloud- storage- extension- 2 .9 .5 .jar;
240+ %jar / buckets/ bfsdefault/ < BUCKET> / exasol- cloud- storage- extension- 2 .9 .6 .jar;
241241/
242242
243243CREATE OR REPLACE JAVA SCALAR SCRIPT IMPORT_METADATA(...) EMITS (
@@ -247,12 +247,12 @@ CREATE OR REPLACE JAVA SCALAR SCRIPT IMPORT_METADATA(...) EMITS (
247247 end_index DECIMAL (36 , 0 )
248248) AS
249249 %scriptclass com .exasol .cloudetl .scriptclasses .FilesMetadataReader;
250- %jar / buckets/ bfsdefault/ < BUCKET> / exasol- cloud- storage- extension- 2 .9 .5 .jar;
250+ %jar / buckets/ bfsdefault/ < BUCKET> / exasol- cloud- storage- extension- 2 .9 .6 .jar;
251251/
252252
253253CREATE OR REPLACE JAVA SET SCRIPT IMPORT_FILES(...) EMITS (...) AS
254254 %scriptclass com .exasol .cloudetl .scriptclasses .FilesDataImporter;
255- %jar / buckets/ bfsdefault/ < BUCKET> / exasol- cloud- storage- extension- 2 .9 .5 .jar;
255+ %jar / buckets/ bfsdefault/ < BUCKET> / exasol- cloud- storage- extension- 2 .9 .6 .jar;
256256/
257257```
258258
@@ -271,12 +271,12 @@ OPEN SCHEMA CLOUD_STORAGE_EXTENSION;
271271
272272CREATE OR REPLACE JAVA SET SCRIPT EXPORT_PATH(...) EMITS (...) AS
273273 %scriptclass com .exasol .cloudetl .scriptclasses .TableExportQueryGenerator;
274- %jar / buckets/ bfsdefault/ < BUCKET> / exasol- cloud- storage- extension- 2 .9 .5 .jar;
274+ %jar / buckets/ bfsdefault/ < BUCKET> / exasol- cloud- storage- extension- 2 .9 .6 .jar;
275275/
276276
277277CREATE OR REPLACE JAVA SET SCRIPT EXPORT_TABLE(...) EMITS (ROWS_AFFECTED INT ) AS
278278 %scriptclass com .exasol .cloudetl .scriptclasses .TableDataExporter;
279- %jar / buckets/ bfsdefault/ < BUCKET> / exasol- cloud- storage- extension- 2 .9 .5 .jar;
279+ %jar / buckets/ bfsdefault/ < BUCKET> / exasol- cloud- storage- extension- 2 .9 .6 .jar;
280280/
281281```
282282
@@ -410,13 +410,13 @@ CREATE OR REPLACE JAVA SCALAR SCRIPT IMPORT_METADATA(...) EMITS (
410410) AS
411411 %jvmoption - DHTTPS_PROXY= http:// username:password@10 .10 .1 .10 :1180
412412 %scriptclass com .exasol .cloudetl .scriptclasses .FilesMetadataReader;
413- %jar / buckets/ bfsdefault/ < BUCKET> / exasol- cloud- storage- extension- 2 .9 .5 .jar;
413+ %jar / buckets/ bfsdefault/ < BUCKET> / exasol- cloud- storage- extension- 2 .9 .6 .jar;
414414/
415415
416416CREATE OR REPLACE JAVA SET SCRIPT IMPORT_FILES(...) EMITS (...) AS
417417 %jvmoption - DHTTPS_PROXY= http:// username:password@10 .10 .1 .10 :1180
418418 %scriptclass com .exasol .cloudetl .scriptclasses .FilesDataImporter;
419- %jar / buckets/ bfsdefault/ < BUCKET> / exasol- cloud- storage- extension- 2 .9 .5 .jar;
419+ %jar / buckets/ bfsdefault/ < BUCKET> / exasol- cloud- storage- extension- 2 .9 .6 .jar;
420420/
421421```
422422
@@ -1207,7 +1207,7 @@ In this case, full script will look like this:
12071207CREATE OR REPLACE JAVA SET SCRIPT IMPORT_PATH(...) EMITS (...) AS
12081208%jvmoption -- add-exports=java.base/sun.nio.ch=ALL-UNNAMED;
12091209%scriptclass com .exasol .cloudetl .scriptclasses .FilesImportQueryGenerator;
1210- %jar / buckets/ bfsdefault/ default/ exasol- cloud- storage- extension- 2 .9 .5 .jar;
1210+ %jar / buckets/ bfsdefault/ default/ exasol- cloud- storage- extension- 2 .9 .6 .jar;
12111211/
12121212```
12131213
0 commit comments