diff --git a/.github/actions/test_sqllogic_stage/action.yml b/.github/actions/test_sqllogic_stage/action.yml index 3619fd9bf43a0..0b3812f178f59 100644 --- a/.github/actions/test_sqllogic_stage/action.yml +++ b/.github/actions/test_sqllogic_stage/action.yml @@ -17,6 +17,10 @@ inputs: description: "path type for dedup when copy, choices: full_path,sub_path" required: true default: "" + size: + description: "stage parquet read size mode, choices: small,large" + required: true + default: "" runs: using: "composite" steps: @@ -34,4 +38,5 @@ runs: TEST_HANDLERS: ${{ inputs.handlers }} TEST_STAGE_STORAGE: ${{ inputs.storage }} TEST_STAGE_DEDUP: ${{ inputs.dedup}} + TEST_STAGE_SIZE: ${{ inputs.size }} run: bash ./scripts/ci/ci-run-sqllogic-tests-without-sandbox.sh ${{ inputs.dirs }} diff --git a/.github/workflows/reuse.sqllogic.yml b/.github/workflows/reuse.sqllogic.yml index f7c7da0fd4ca5..d04d4e82d8a4f 100644 --- a/.github/workflows/reuse.sqllogic.yml +++ b/.github/workflows/reuse.sqllogic.yml @@ -323,6 +323,7 @@ jobs: dirs: stage handlers: ${{ matrix.handler }} dedup: ${{ matrix.dedup }} + size: ${{ matrix.size }} - name: Upload failure if: failure() uses: ./.github/actions/artifact_failure