planner/core: discourage degenerate index joins when probe rows approach a full scan | tidb-test=pr/2738 #6957
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
| name: Bazel Crossbuild for TiDB/Lightning | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| master: | |
| name: Bazel Crossbuild | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: | |
| - macos-latest | |
| - ubuntu-latest | |
| - ubuntu-24.04-arm | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Build Prepare | |
| uses: ./.github/actions/tidb_build | |
| with: | |
| bazelrc: ${{ secrets.BAZELRC }} | |
| gcp_sa_key: ${{ secrets.GCP_SA_KEY }} | |
| go-version: 1.25 | |
| - name: Run Build | |
| shell: bash | |
| run: | | |
| #!/bin/bash | |
| unset CI | |
| system_name=$(uname -s) | |
| if [ "$system_name" == "Darwin" ]; then | |
| sed -i '' '/bazel-cache/d' DEPS.bzl | |
| sed -i '' '/ats.apps.svc/d' DEPS.bzl | |
| sed -i '' '/bazel-cache/d' WORKSPACE | |
| sed -i '' '/ats.apps.svc/d' WORKSPACE | |
| elif [ "$system_name" == "Linux" ]; then | |
| sed -i '/bazel-cache/d' DEPS.bzl | |
| sed -i '/ats.apps.svc/d' DEPS.bzl | |
| sed -i '/bazel-cache/d' WORKSPACE | |
| sed -i '/ats.apps.svc/d' WORKSPACE | |
| fi | |
| make bazel_bin |