This is an automated email from the ASF dual-hosted git repository.
yuqi1129 pushed a commit to branch branch-1.3
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/branch-1.3 by this push:
new d7e5ff5830 [Cherry-pick to branch-1.3] [MINOR] test(lance): Fix
missing-schema assertion for Lance Spark 0.5.1 (#13084) (#13087)
d7e5ff5830 is described below
commit d7e5ff58300aee1dcd3e55a0d1cb1208642b8cdb
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Sep 11 14:01:48 2026 +0800
[Cherry-pick to branch-1.3] [MINOR] test(lance): Fix missing-schema
assertion for Lance Spark 0.5.1 (#13084) (#13087)
**Cherry-pick Information:**
- Original commit: d1e73647e06cb1d5f2e984f60e78fd93d32c3fae
- Target branch: `branch-1.3`
- Status: ✅ Clean cherry-pick (no conflicts)
Co-authored-by: Qi Yu <[email protected]>
---
.../gravitino/lance/integration/test/LanceSparkRESTServiceIT.java | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git
a/lance/lance-rest-server/src/test/java/org/apache/gravitino/lance/integration/test/LanceSparkRESTServiceIT.java
b/lance/lance-rest-server/src/test/java/org/apache/gravitino/lance/integration/test/LanceSparkRESTServiceIT.java
index 670f547688..d680c290c7 100644
---
a/lance/lance-rest-server/src/test/java/org/apache/gravitino/lance/integration/test/LanceSparkRESTServiceIT.java
+++
b/lance/lance-rest-server/src/test/java/org/apache/gravitino/lance/integration/test/LanceSparkRESTServiceIT.java
@@ -299,8 +299,7 @@ public class LanceSparkRESTServiceIT extends BaseIT {
RuntimeException exception =
Assertions.assertThrows(
RuntimeException.class, () ->
createLanceTable(nonExistentSchemaName, tableName));
- assertFailureContainsAll(
- exception, "NoSuchSchemaException", nonExistentSchemaName, "does not
exist");
+ assertFailureContainsAll(exception, nonExistentSchemaName, "does not
exist");
Assertions.assertFalse(catalog.asSchemas().schemaExists(nonExistentSchemaName));
}