Skip to content

Commit 934c704

Browse files
committed
feat(cluster): Use external meta service for logica testing
1 parent d6891fb commit 934c704

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/actions/test_sqllogic_standalone_linux/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ runs:
2323
sha: ${{ github.sha }}
2424
target: ${{ inputs.target }}
2525

26-
- name: Run sqllogic Tests with Standalone mode with embedded meta-store
26+
- name: Run sqllogic Tests with Standalone mode
2727
shell: bash
2828
run: |
2929
docker run --rm --tty --net=host \

scripts/ci/ci-run-sqllogic-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
set -e
55

66
echo "Starting standalone DatabendQuery and DatabendMeta"
7-
./scripts/ci/deploy/databend-query-standalone-embedded-meta.sh
7+
./scripts/ci/deploy/databend-query-standalone.sh
88

99
SCRIPT_PATH="$(cd "$(dirname "$0")" >/dev/null 2>&1 && pwd)"
1010
cd "$SCRIPT_PATH/../../tests/logictest" || exit

src/query/management/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ common-exception = { path = "../../common/exception" }
1919
common-functions = { path = "../functions" }
2020
common-io = { path = "../../common/io" }
2121
common-meta-api = { path = "../../meta/api" }
22+
common-meta-store = { path = "../../meta/store" }
2223
common-meta-types = { path = "../../meta/types" }
2324
common-proto-conv = { path = "../../meta/proto-conv" }
2425
common-protos = { path = "../../meta/protos" }
25-
common-meta-store = { path = "../../meta/store" }
2626

2727
async-trait = "0.1.56"
2828
serde_json = "1.0.81"

0 commit comments

Comments
 (0)