Skip to content

fix(zstd): return decode error instead of panicking on corrupt view lengths #147

fix(zstd): return decode error instead of panicking on corrupt view lengths

fix(zstd): return decode error instead of panicking on corrupt view lengths #147

Workflow file for this run

# 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"
}
]