From b60ba2ae933e20445c6339afdcdca1339e75f062 Mon Sep 17 00:00:00 2001 From: JaySon-Huang Date: Thu, 26 Sep 2024 16:21:47 +0800 Subject: [PATCH] Update comment --- dbms/src/Storages/DeltaMerge/DeltaMergeStore.h | 2 ++ tests/fullstack-test2/vector/vector-index.test | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/dbms/src/Storages/DeltaMerge/DeltaMergeStore.h b/dbms/src/Storages/DeltaMerge/DeltaMergeStore.h index 9cdc04943f8..39840166d0f 100644 --- a/dbms/src/Storages/DeltaMerge/DeltaMergeStore.h +++ b/dbms/src/Storages/DeltaMerge/DeltaMergeStore.h @@ -572,7 +572,9 @@ class DeltaMergeStore StoreStats getStoreStats(); SegmentsStats getSegmentsStats(); + LocalIndexesStats getLocalIndexStats(); + // Generate local index stats for non inited DeltaMergeStore static LocalIndexesStats genLocalIndexStatsByTableInfo(const TiDB::TableInfo & table_info); bool isCommonHandle() const { return is_common_handle; } diff --git a/tests/fullstack-test2/vector/vector-index.test b/tests/fullstack-test2/vector/vector-index.test index 2114b6ab6be..77fd1431cbc 100644 --- a/tests/fullstack-test2/vector/vector-index.test +++ b/tests/fullstack-test2/vector/vector-index.test @@ -11,7 +11,8 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - +#TODO: enable vector-index fullstack test +#RETURN # Preparation. mysql> drop table if exists test.t;