mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-03 04:19:18 +08:00
7957170220
Signed-off-by: dragondriver <jiquan.long@zilliz.com>
77 lines
1.7 KiB
Go
77 lines
1.7 KiB
Go
package proxynode
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestParamTable_InsertChannelRange(t *testing.T) {
|
|
ret := Params.InsertChannelNames
|
|
fmt.Println(ret)
|
|
}
|
|
|
|
func TestParamTable_DeleteChannelNames(t *testing.T) {
|
|
ret := Params.DeleteChannelNames
|
|
fmt.Println(ret)
|
|
}
|
|
|
|
func TestParamTable_K2SChannelNames(t *testing.T) {
|
|
ret := Params.K2SChannelNames
|
|
fmt.Println(ret)
|
|
}
|
|
|
|
func TestParamTable_SearchChannelNames(t *testing.T) {
|
|
ret := Params.SearchChannelNames
|
|
fmt.Println(ret)
|
|
}
|
|
|
|
func TestParamTable_SearchResultChannelNames(t *testing.T) {
|
|
ret := Params.SearchResultChannelNames
|
|
fmt.Println(ret)
|
|
}
|
|
|
|
func TestParamTable_ProxySubName(t *testing.T) {
|
|
ret := Params.ProxySubName
|
|
fmt.Println(ret)
|
|
}
|
|
|
|
func TestParamTable_ProxyTimeTickChannelNames(t *testing.T) {
|
|
ret := Params.ProxyTimeTickChannelNames
|
|
fmt.Println(ret)
|
|
}
|
|
|
|
func TestParamTable_DataDefinitionChannelNames(t *testing.T) {
|
|
ret := Params.DataDefinitionChannelNames
|
|
fmt.Println(ret)
|
|
}
|
|
|
|
func TestParamTable_MsgStreamInsertBufSize(t *testing.T) {
|
|
ret := Params.MsgStreamInsertBufSize
|
|
fmt.Println(ret)
|
|
}
|
|
|
|
func TestParamTable_MsgStreamSearchBufSize(t *testing.T) {
|
|
ret := Params.MsgStreamSearchBufSize
|
|
fmt.Println(ret)
|
|
}
|
|
|
|
func TestParamTable_MsgStreamSearchResultBufSize(t *testing.T) {
|
|
ret := Params.MsgStreamSearchResultBufSize
|
|
fmt.Println(ret)
|
|
}
|
|
|
|
func TestParamTable_MsgStreamSearchResultPulsarBufSize(t *testing.T) {
|
|
ret := Params.MsgStreamSearchResultPulsarBufSize
|
|
fmt.Println(ret)
|
|
}
|
|
|
|
func TestParamTable_MsgStreamTimeTickBufSize(t *testing.T) {
|
|
ret := Params.MsgStreamTimeTickBufSize
|
|
fmt.Println(ret)
|
|
}
|
|
|
|
func TestParamTable_defaultPartitionTag(t *testing.T) {
|
|
ret := Params.DefaultPartitionTag
|
|
fmt.Println("default partition tag: ", ret)
|
|
}
|