Skip to content

Commit

Permalink
Fixed check_rollback_7.1.30_script.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tomuben committed Oct 30, 2024
1 parent 2fb413b commit 96b2b92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check_rollback_7.1.30_script.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
working-directory: /tmp
- name: Check if get_original_script_languages_parameters.sql works
run: |
RESULT=`exaplus -c localhost:8888 -u sys -p exasol -f ./get_original_script_languages_parameter.sql`
RESULT=`exaplus -q -c localhost:8888 -u sys -p exasol -f ./get_original_script_languages_parameter.sql`
echo "$RESULT" | grep "ALTER SYSTEM SET SCRIPT_LANGUAGES='R=builtin_r JAVA=builtin_java PYTHON3=builtin_python3'" || (echo SCRIPT_LANGUAGES parameter not as expected && exit 1)
working-directory: doc/user_guide/resources
- name: Check if get_original_script_languages_parameters.sql works
Expand All @@ -51,7 +51,7 @@ jobs:
working-directory: doc/user_guide/resources
- name: Check if construct_alter_system_command_before_update.sql works
run: |
RESULT=`exaplus -q -c localhost:8888 -u sys -p exasol -f ./construct_alter_system_command_before_update.sql`
RESULT=`exaplus -c localhost:8888 -u sys -p exasol -f ./construct_alter_system_command_before_update.sql` || (echo "$RESULT" && exit 1)
echo "$RESULT" | grep "ALTER SYSTEM SET SCRIPT_LANGUAGES='JAVA=builtin_java PYTHON3=builtin_python3 R=localzmq+protobuf:///bfsdefault/default/EXAClusterOS/ScriptLanguages-standard-EXASOL-7.1.0-slc-v6.0.0-VYP23K36/?lang=r#/buckets/bfsdefault/default/EXAClusterOS/ScriptLanguages-standard-EXASOL-7.1.0-slc-v6.0.0-VYP23K36/exaudf/exaudfclient_py3';"
exaplus -q -c localhost:8888 -u sys -p exasol -sql "$RESULT"
exaplus -q -c localhost:8888 -u sys -p exasol -sql "SELECT TEST.R_DEMO();"
Expand Down

0 comments on commit 96b2b92

Please sign in to comment.