From 34dd548bc80b551cc055f067b94323419410e643 Mon Sep 17 00:00:00 2001 From: qzhu Date: Mon, 11 Mar 2024 13:28:24 -0700 Subject: [PATCH] init commit for test --- python/python/lancedb/remote/table.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/python/python/lancedb/remote/table.py b/python/python/lancedb/remote/table.py index bbae9921..22c06fd0 100644 --- a/python/python/lancedb/remote/table.py +++ b/python/python/lancedb/remote/table.py @@ -71,6 +71,11 @@ class RemoteTable(Table): print(self._name) resp = self._conn._client.post(f"/v1/table/{self._name}/index/list/") return resp + + def index_stats(self, index_uuid: str): + """List all the indices on the table""" + resp = self._conn._client.post(f"/v1/table/{index_uuid}/index/stats/") + return resp def create_scalar_index( self,