From e8ebd926e0e67fcf1fe50d072866e394cacbd600 Mon Sep 17 00:00:00 2001 From: shaoyue Date: Thu, 23 Dec 2021 11:05:09 +0800 Subject: [PATCH] [skip e2e] Add comment for internal/proxy/task.go (#14031) Signed-off-by: shaoyue.chen --- internal/proxy/task.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/internal/proxy/task.go b/internal/proxy/task.go index 08aeea2073..bddea0113e 100644 --- a/internal/proxy/task.go +++ b/internal/proxy/task.go @@ -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 }