Skip to content

Fixed CASE statement to work correctly when branch expression is of Numeric and Decimal type #17269

Fixed CASE statement to work correctly when branch expression is of Numeric and Decimal type

Fixed CASE statement to work correctly when branch expression is of Numeric and Decimal type #17269

name: Validate Installation/Upgrade Scripts
on: [push, pull_request]
jobs:
run-sql-validation-tests:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
id: checkout
- name: Install Python
id: install-python
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Run tests
id: run-test
if: always() && steps.install-python.outcome == 'success'
run: |
cd test/python
python3 sql_validation.py
- name: Upload artifacts
if: always() && steps.run-test.outcome == 'failure'
uses: actions/upload-artifact@v4
with:
name: expected-output-files
path: test/python/output/sql_validation_framework/*