From aa2ccf556dc0b150acdddfd7d697c5050b8cb477 Mon Sep 17 00:00:00 2001
From: Sophia Leierseder <s.leierseder@adito.de>
Date: Wed, 16 Oct 2019 05:47:07 +0000
Subject: [PATCH] changes in exportLiquibaseContent_serverProcess

(cherry picked from commit 528701975bc7ef3b2cb75389640b656301a2dcbd)
---
 process/exportLiquibaseContent_serverProcess/process.js | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/process/exportLiquibaseContent_serverProcess/process.js b/process/exportLiquibaseContent_serverProcess/process.js
index c641f161061..82cb96143a7 100644
--- a/process/exportLiquibaseContent_serverProcess/process.js
+++ b/process/exportLiquibaseContent_serverProcess/process.js
@@ -29,7 +29,9 @@ fileIO.storeData(outFolderBase + "changelog.xml", changeLogData, util.DATA_TEXT,
 logging.log("liquibase data (" + exportedTables.length + " tables) exported into folder:" + outFolderPath);
 
 //remember to change the alias db to the data_system when running binaries exporter:
-//LiquiUtils.exportTableAsLiquibaseFiles(outFolderPath, "ASYS_BINARIES", null, null, null, false, alias);
+alias = "diffAliasSystem";
+outFolderPath = vars.get("$sys.servertemp") + "/" + alias + "/" + "generatedData/";
+LiquiUtils.exportTableAsLiquibaseFiles(outFolderPath, "ASYS_BINARIES", null, null, null, false, alias, true);
 
 //alias = SqlUtils.getSystemAlias();
 //outFolderPath = "C:\\temp\\generatedData\\" + alias + "\\";
-- 
GitLab