Github user zcorrea commented on a diff in the pull request:
https://github.com/apache/trafodion/pull/1437#discussion_r166396386
--- Diff: core/sqf/sqenvcom.sh ---
@@ -47,6 +47,15 @@ export PRODUCT_COPYRIGHT_HEADER="2015-2017 Apache
Software Foundation"
##############################################################
export
TRAFODION_ENABLE_AUTHENTICATION=${TRAFODION_ENABLE_AUTHENTICATION:-NO}
+# Set the Trafodion Configuration store type
+if [[ -n "$CLUSTERNAME" ]]; then
+ # This is a cluster environment, not a workstation
+ #export TRAF_CONFIG_DBSTORE=MySQL
+ export TRAF_CONFIG_DBSTORE=Sqlite
+else
+ export TRAF_CONFIG_DBSTORE=Sqlite
--- End diff --
This is an initial step to prepare the code base before adding the MySQL
storage method.
---