This is an automated email from the ASF dual-hosted git repository.
yuqi4733 pushed a commit to branch branch-1.1
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/branch-1.1 by this push:
new 0e37ce383e [#9662] improvement(document): add missing DescribeTable
endpoint to lance-rest-service.md (#9670)
0e37ce383e is described below
commit 0e37ce383ef18c28a3f0b319742b05a522775567
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Mon Jan 12 09:42:06 2026 +0800
[#9662] improvement(document): add missing DescribeTable endpoint to
lance-rest-service.md (#9670)
<!--
1. Title: [#<issue>] <type>(<scope>): <subject>
Examples:
- "[#123] feat(operator): support xxx"
- "[#233] fix: check null before access result in xxx"
- "[MINOR] refactor: fix typo in variable name"
- "[MINOR] docs: fix typo in README"
- "[#255] test: fix flaky test NameOfTheTest"
Reference: https://www.conventionalcommits.org/en/v1.0.0/
2. If the PR is unfinished, please mark this PR as draft.
-->
### What changes were proposed in this pull request?
- Adds a missing entry for the DescribeTable endpoint to the Supported
Operations section of the Lance REST service documentation.
The following endpoint is now documented:
DescribeTable | Describe an existing Lance table | POST |
/lance/v1/table/{id}/describe | 1.1.0
-- | -- | -- | -- | --
### Why are the changes needed?
- This endpoint is already supported by Gravitino but was not listed in
the official documentation.
Fix: #9662
### Does this PR introduce _any_ user-facing change?
- No. This is a documentation-only change. No API behavior,
configuration, or implementation is modified.
### How was this patch tested?
- Not applicable. This change only updates documentation. No runtime
behavior or tests are affected.
Co-authored-by: Jonghan Sim <[email protected]>
---
docs/lance-rest-service.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/docs/lance-rest-service.md b/docs/lance-rest-service.md
index f8754d08a9..895b4ce270 100644
--- a/docs/lance-rest-service.md
+++ b/docs/lance-rest-service.md
@@ -76,6 +76,7 @@ The Lance REST service provides comprehensive support for
namespace management,
| NamespaceExists | Check whether a namespace exists
| POST |
`/lance/v1/namespace/{id}/exists` | 1.1.0 |
| ListTables | List all tables in a namespace
| GET |
`/lance/v1/namespace/{id}/table/list` | 1.1.0 |
| CreateTable | Create a new table in a namespace
| POST |
`/lance/v1/table/{id}/create` | 1.1.0 |
+| DescribeTable | Describe an existing Lance table
| POST |
`/lance/v1/table/{id}/describe` | 1.1.0 |
| DropTable | Delete a table including both metadata and data
| POST |
`/lance/v1/table/{id}/drop` | 1.1.0 |
| TableExists | Check whether a table exists
| POST |
`/lance/v1/table/{id}/exists` | 1.1.0 |
| RegisterTable | Register an existing Lance table to a namespace
| POST |
`/lance/v1/table/{id}/register` | 1.1.0 |