mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-07 09:38:39 +08:00
issue: #45397, #45403, #45463 pr: #45461 also pick pr: #45447 - fix alter collection with alias failed with collection not found - fix the Nightly E2E failures. - fix the wrong update timetick of altering collection to fix the related load failure. --------- Signed-off-by: sijie-ni-0214 <sijie.ni@zilliz.com> Signed-off-by: chyezh <chyezh@outlook.com> Co-authored-by: sijie-ni-0214 <sijie.ni@zilliz.com>
25 lines
670 B
Go
25 lines
670 B
Go
package message
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/milvus-io/milvus/pkg/v2/util/funcutil"
|
|
)
|
|
|
|
func TestBroadcastResult(t *testing.T) {
|
|
r := BroadcastResult[*CreateDatabaseMessageHeader, *CreateDatabaseMessageBody]{
|
|
Message: nil,
|
|
Results: map[string]*AppendResult{
|
|
"v1": {TimeTick: 1},
|
|
"v2": {TimeTick: 2},
|
|
"abc" + funcutil.ControlChannelSuffix: {TimeTick: 3},
|
|
},
|
|
}
|
|
|
|
assert.ElementsMatch(t, []string{"v1", "v2"}, r.GetVChannelsWithoutControlChannel())
|
|
assert.NotNil(t, r.GetControlChannelResult())
|
|
assert.Equal(t, uint64(3), r.GetMaxTimeTick())
|
|
}
|