Skip to content

Commit 0d8a77f

Browse files
committed
October 2024 Update. Code Renovation and Improvements. Bug Fixes
Fixed #257 Fixed #255 Fixed #254 Fixed #253 Fixed #252 Fixed #251 Fixed #250 Fixed #249 Fixed #248 Fixed #247 Fixed #246 Fixed #245 Oracle QA: Automate running QA Scripts for standalone tests: Command Line Tests Oracle11g , Oracle19c, Oracle21 & Oracle23c Vertica 9 DB2 Yugabtype CockroachDB Snowflake Code Renovation Projects: Replace () => {} functiions with YadamuLibrary.NOOP Replace Object.assign() with deconstruction operator (...) Improve Parameter Merging in Yadamu and YadamuDBI Improve Management of Connection Settings and Vendor specific settings YadamuDBI: Rename #_DBI_PARAMETERS to #DBI_PARAMETER Improve Handling of JOBS. Add support for Named JOBS Remove support for Arraya of JOBs Add support for Named BATCH operations A Batch has a name and consists of an Array of JOB Names. This replaces the concept of an array of jobs YadamuServer: Add support for running named JOBS YadamuServer: Remove support for running an Array of Jobs YadmauServer: Remove support for running a specific job by index. YadamuServer: Add support for running a named to Batch YadamuCLI: Deprecate copy.js in favor of pump.js. Copy Command now runs Pump and expects an extra Parameter TASK which provides the name of the JOB. to be run. Add batch.js with uses TASK parameter to provide the name of a Batch. OracleDBI: Add workaround for bug 371866784 in Oracle 23ai OracleDBI: Improve handling of asynchronous handling of LOB content in Oracle Parser AWSS3DBI: Add support for writing export files to AWS-S3
1 parent 2189dd2 commit 0d8a77f

File tree

163 files changed

+3964
-1947
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

163 files changed

+3964
-1947
lines changed

bin/compare.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
@echo off
22
REM Run from YADAMU_HOME
3-
set YADAMU_HOME=%CD%
3+
if not defined YADAMU_HOME set YADAMU_HOME=%CD%
44
node %YADAMU_HOME%\src\node\cli\compare.js %*

bin/copy.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
@echo off
22
REM Run from YADAMU_HOME
3-
set YADAMU_HOME=%CD%
3+
if not defined YADAMU_HOME set YADAMU_HOME=%CD%
44
node %YADAMU_HOME%\src\node\cli\copy.js %*

bin/decrypt.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
@echo off
22
REM Run from YADAMU_HOME
3-
set YADAMU_HOME=%CD%
3+
if not defined YADAMU_HOME set YADAMU_HOME=%CD%
44
node %YADAMU_HOME%\src\node\cli\decrypt.js %*

bin/directLoad.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
@echo off
22
REM Run from YADAMU_HOME
3-
set YADAMU_HOME=%CD%
3+
if not defined YADAMU_HOME set YADAMU_HOME=%CD%
44
node %YADAMU_HOME%\src\node\cli\directLoad.js %*

bin/encrypt.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
@echo off
22
REM Run from YADAMU_HOME
3-
set YADAMU_HOME=%CD%
3+
if not defined YADAMU_HOME set YADAMU_HOME=%CD%
44
node %YADAMU_HOME%\src\node\cli\encrypt.js %*

bin/export.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
@echo off
22
REM Run from YADAMU_HOME
3-
set YADAMU_HOME=%CD%
3+
if not defined YADAMU_HOME set YADAMU_HOME=%CD%
44
node %YADAMU_HOME%\src\node\cli\export.js %*

bin/import.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
@echo off
22
REM Run from YADAMU_HOME
3-
set YADAMU_HOME=%CD%
3+
if not defined YADAMU_HOME set YADAMU_HOME=%CD%
44
node %YADAMU_HOME%\src\node\cli\import.js %*

bin/load.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
@echo off
22
REM Run from YADAMU_HOME
3-
set YADAMU_HOME=%CD%
3+
if not defined YADAMU_HOME set YADAMU_HOME=%CD%
44
node %YADAMU_HOME%\src\node\cli\load.js %*

bin/service.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
@echo off
22
REM Run from YADAMU_HOME
3-
set YADAMU_HOME=%CD%
3+
if not defined YADAMU_HOME set YADAMU_HOME=%CD%
44
node %YADAMU_HOME%\src\node\service\main.js %*

bin/unload.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
@echo off
22
REM Run from YADAMU_HOME
3-
set YADAMU_HOME=%CD%
3+
if not defined YADAMU_HOME set YADAMU_HOME=%CD%
44
node %YADAMU_HOME%\src\node\cli\unload.js %*

0 commit comments

Comments
 (0)