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:
parent
c4a6acfb1e
commit
bec1a2f038
|
@ -47,8 +47,8 @@ const (
|
||||||
|
|
||||||
// String represents a string value.
|
// String represents a string value.
|
||||||
type String struct {
|
type String struct {
|
||||||
V string
|
|
||||||
T int64
|
T int64
|
||||||
|
V string
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s String) String() string {
|
func (s String) String() string {
|
||||||
|
|
Loading…
Reference in New Issue