fix(zstd): return decode error instead of panicking on corrupt view lengths #147
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Run Vortex SQL benchmark on every commit in a PR. | |
| # This is not gated behind action/benchmark-sql | |
| name: PR Vortex Query Benchmark | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: false | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| branches: ["develop"] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| id-token: write | |
| jobs: | |
| sql: | |
| uses: ./.github/workflows/sql-benchmarks.yml | |
| secrets: inherit | |
| with: | |
| mode: "pr" | |
| benchmark_matrix: | | |
| [ | |
| { | |
| "id": "vortex-queries", | |
| "subcommand": "vortex", | |
| "name": "Vortex queries", | |
| "data_formats": ["parquet", "vortex"], | |
| "pr_targets": [ | |
| {"engine": "datafusion", "format": "parquet"}, | |
| {"engine": "datafusion", "format": "vortex"}, | |
| {"engine": "duckdb", "format": "parquet"}, | |
| {"engine": "duckdb", "format": "vortex"} | |
| ], | |
| "develop_targets": [ | |
| {"engine": "datafusion", "format": "parquet"}, | |
| {"engine": "datafusion", "format": "vortex"}, | |
| {"engine": "duckdb", "format": "parquet"}, | |
| {"engine": "duckdb", "format": "vortex"} | |
| ], | |
| "iterations": "100" | |
| } | |
| ] |