This is an automated email from the ASF dual-hosted git repository.

yuqi4733 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git


The following commit(s) were added to refs/heads/main by this push:
     new d8f47db165 [#9662] improvement(document): add missing DescribeTable 
endpoint to lance-rest-service.md (#9668)
d8f47db165 is described below

commit d8f47db1654fb099d09d79f22810ed3048c3f0ce
Author: Jonghan Sim <[email protected]>
AuthorDate: Sat Jan 10 17:57:15 2026 +0900

    [#9662] improvement(document): add missing DescribeTable endpoint to 
lance-rest-service.md (#9668)
    
    <!--
    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.
---
 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         |

Reply via email to