This is an automated email from the ASF dual-hosted git repository.
terrymanu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git
The following commit(s) were added to refs/heads/master by this push:
new e008838c828 Fix MCP E2E conformance discovery and Hive test dependency
(#39230)
e008838c828 is described below
commit e008838c828467759c0b2a6a20c46dcb04aabac1
Author: Liang Zhang <[email protected]>
AuthorDate: Fri Jul 24 14:10:45 2026 +0800
Fix MCP E2E conformance discovery and Hive test dependency (#39230)
Parse the conformance runner's indented scenario list correctly and restore
the Hive JDBC test dependency required by MCP production Proxy E2E tests.
---
.github/workflows/e2e-mcp.yml | 2 +-
test/e2e/mcp/pom.xml | 5 +++++
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/e2e-mcp.yml b/.github/workflows/e2e-mcp.yml
index fe33c71fbd3..d61f0862d8e 100644
--- a/.github/workflows/e2e-mcp.yml
+++ b/.github/workflows/e2e-mcp.yml
@@ -234,7 +234,7 @@ jobs:
mkdir -p "${results_root}"
available_scenarios="$(
node .mcp-conformance/dist/index.js list --server --spec-version
2025-11-25 \
- | sed -nE 's/^ - ([^ ]+).*/\1/p'
+ | sed -nE 's/^[[:space:]]+- ([^ ]+).*/\1/p'
)"
scenario_count=0
while IFS= read -r scenario; do
diff --git a/test/e2e/mcp/pom.xml b/test/e2e/mcp/pom.xml
index b1cd48eb453..8d4b30f5008 100644
--- a/test/e2e/mcp/pom.xml
+++ b/test/e2e/mcp/pom.xml
@@ -114,6 +114,11 @@
<version>${project.version}</version>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>org.apache.hive</groupId>
+ <artifactId>hive-jdbc</artifactId>
+ <scope>test</scope>
+ </dependency>
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>