[skip e2e] Add comment for internal/proxy/task.go (#14031)

Signed-off-by: shaoyue.chen <shaoyue.chen@zilliz.com>
pull/14006/head
shaoyue 2021-12-23 11:05:09 +08:00 committed by GitHub
parent d905d2ab6c
commit e8ebd926e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -4820,14 +4820,17 @@ func (c *CreateAliasTask) Type() commonpb.MsgType {
return c.Base.MsgType
}
// BeginTs returns the ts
func (c *CreateAliasTask) BeginTs() Timestamp {
return c.Base.Timestamp
}
// EndTs returns the ts
func (c *CreateAliasTask) EndTs() Timestamp {
return c.Base.Timestamp
}
// SetTs sets the ts
func (c *CreateAliasTask) SetTs(ts Timestamp) {
c.Base.Timestamp = ts
}