From bfe406b88b2d21067e0b56faf77edd311e3432f6 Mon Sep 17 00:00:00 2001 From: Alexander Bayandin Date: Wed, 16 Aug 2023 11:30:55 +0100 Subject: [PATCH] test_runner: add scale parameter to tpc-h tests --- .github/workflows/benchmarking.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/benchmarking.yml b/.github/workflows/benchmarking.yml index e2f15d96db..78cbaa8bc8 100644 --- a/.github/workflows/benchmarking.yml +++ b/.github/workflows/benchmarking.yml @@ -259,6 +259,9 @@ jobs: fi psql ${CONNSTR} -c "${QUERY}" + # Print `tenant_id` and `timeline_id` to ease debugging + psql ${CONNSTR} -C "SHOW neon.tenant_id; SHOW neon.timeline_id;" || true + - name: Benchmark init uses: ./.github/actions/run-python-test-set with: @@ -388,6 +391,9 @@ jobs: fi psql ${CONNSTR} -c "${QUERY}" + # Print `tenant_id` and `timeline_id` to ease debugging + psql ${CONNSTR} -C "SHOW neon.tenant_id; SHOW neon.timeline_id;" || true + - name: ClickBench benchmark uses: ./.github/actions/run-python-test-set with: @@ -492,6 +498,9 @@ jobs: fi psql ${CONNSTR} -c "${QUERY}" + # Print `tenant_id` and `timeline_id` to ease debugging + psql ${CONNSTR} -C "SHOW neon.tenant_id; SHOW neon.timeline_id;" || true + - name: Run TPC-H benchmark uses: ./.github/actions/run-python-test-set with: @@ -582,6 +591,9 @@ jobs: fi psql ${CONNSTR} -c "${QUERY}" + # Print `tenant_id` and `timeline_id` to ease debugging + psql ${CONNSTR} -C "SHOW neon.tenant_id; SHOW neon.timeline_id;" || true + - name: Run user examples uses: ./.github/actions/run-python-test-set with: