Reordering fields of String datetype (#4751)

Other types has timestamp as first field, but only String type has value as first field.

Signed-off-by: gangseok.lee <gangseok.lee@samsung.com>
This commit is contained in:
Kangseok Thomas Lee 2018-10-17 16:52:23 +09:00 committed by Brian Brazil
parent c4a6acfb1e
commit bec1a2f038
1 changed files with 1 additions and 1 deletions

View File

@ -47,8 +47,8 @@ const (
// String represents a string value.
type String struct {
V string
T int64
V string
}
func (s String) String() string {