From f4e459cbf765791c8addb9093e34bce6f2d55a10 Mon Sep 17 00:00:00 2001 From: junjiejiangjjj Date: Tue, 6 Jan 2026 10:57:24 +0800 Subject: [PATCH] fix: Fix function edit interface bug (#46781) https://github.com/milvus-io/milvus/issues/46780 Signed-off-by: junjie.jiang --- internal/proxy/function_task.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/proxy/function_task.go b/internal/proxy/function_task.go index daaa167598..6c101892bf 100644 --- a/internal/proxy/function_task.go +++ b/internal/proxy/function_task.go @@ -327,5 +327,6 @@ func getCollectionInfo(ctx context.Context, dbName string, collectionName string if err != nil { return nil, err } + coll.schema.DbName = dbName return coll, nil }