Optimize DISTINCT, ORDER BY and DISTINCT ON when Aggregation without Group By. #1930
Workflow file for this run
This file contains 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: cbdb external_fts pipeline | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
branches: | |
- main | |
env: | |
BUILD_TYPE: "debug" | |
FTS_MODE: "external_fts" | |
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | |
DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }} | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
build: | |
if: github.event.pull_request.draft == false | |
runs-on: [self-hosted, example] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run build script | |
run: | | |
echo $GITHUB_RUN_ID > BUILD_NUMBER | |
hd-ci/compile_cbdb.bash ${GEN_DOCKER_TAG} | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: cbdb-variables | |
path: /opt/actions-runner/_work/cloudberrydb/cloudberrydb/cbdb-artifacts.txt | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: cbdb-package | |
path: /tmp/server-build* | |
icw-test: | |
needs: build | |
runs-on: [self-hosted, example] | |
env: | |
MAKE_TEST_COMMAND: "-k PGOPTIONS='-c optimizer=off' installcheck-world" | |
TEST_OS: "centos" | |
DUMP_DB: "true" | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
path: "gpdb_src" | |
- uses: actions/download-artifact@v3 | |
with: | |
name: cbdb-variables | |
path: /opt/ | |
- uses: actions/download-artifact@v3 | |
with: | |
name: cbdb-package | |
path: /opt/ | |
- name: Run icw-test script | |
run: | | |
mkdir /code | |
cp -a gpdb_src/ /code | |
cd /code | |
echo $GITHUB_RUN_ID > gpdb_src/BUILD_NUMBER | |
gpdb_src/hd-ci/icw_cbdb.bash $FTS_MODE | |
- uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: icw-test | |
path: | | |
/code/gpdb_src/src/test/regress/regression.out | |
/code/gpdb_src/src/test/regress/regression.diffs | |
/code/gpdb_src/src/test/regress/results/ | |
/code/gpdb_src/src/test/regress/expected/ | |
/code/gpdb_src/src/test/isolation2/regression.out | |
/code/gpdb_src/src/test/isolation2/regression.diffs | |
/code/gpdb_src/src/test/isolation2/results/ | |
/code/gpdb_src/src/test/isolation2/expected/ | |
/code/gpdb_src/gpAux/gpdemo/datadirs/standby/log/ | |
/code/gpdb_src/gpAux/gpdemo/datadirs/qddir/demoDataDir-1/log/ | |
/code/gpdb_src/gpAux/gpdemo/datadirs/dbfast1/demoDataDir0/log/ | |
/code/gpdb_src/gpAux/gpdemo/datadirs/dbfast2/demoDataDir1/log/ | |
/code/gpdb_src/gpAux/gpdemo/datadirs/dbfast3/demoDataDir2/log/ | |
/code/gpdb_src/gpAux/gpdemo/datadirs/dbfast_mirror1/demoDataDir0/log/ | |
/code/gpdb_src/gpAux/gpdemo/datadirs/dbfast_mirror2/demoDataDir1/log/ | |
/code/gpdb_src/gpAux/gpdemo/datadirs/dbfast_mirror3/demoDataDir2/log/ |