From addb66f89ce0e17b0c3841e227e49d697f680575 Mon Sep 17 00:00:00 2001 From: huanghaoyuanhhy Date: Fri, 12 Dec 2025 20:03:14 +0800 Subject: [PATCH] fix: fix DescribeCollection always returning db_id = 0 (#46092) fix: #46089 Signed-off-by: huanghaoyuanhhy --- internal/proxy/task.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/proxy/task.go b/internal/proxy/task.go index ac02cbdfc6..b82d1f4c2b 100644 --- a/internal/proxy/task.go +++ b/internal/proxy/task.go @@ -931,6 +931,7 @@ func (t *describeCollectionTask) Execute(ctx context.Context) error { t.result.Aliases = result.Aliases t.result.Properties = result.Properties t.result.DbName = result.GetDbName() + t.result.DbId = result.GetDbId() t.result.NumPartitions = result.NumPartitions t.result.UpdateTimestamp = result.UpdateTimestamp t.result.UpdateTimestampStr = result.UpdateTimestampStr