Browse Source

go fmt

pull/1084/head
Chris Lu 5 years ago
parent
commit
939e4b57a8
  1. 3
      weed/query/json/query_json_test.go
  2. 1
      weed/query/sqltypes/type.go
  3. 2
      weed/query/sqltypes/value.go
  4. 2
      weed/server/volume_grpc_query.go

3
weed/query/json/query_json_test.go

@ -68,8 +68,6 @@ func TestGjson(t *testing.T) {
return true
})
}
func TestJsonQueryRow(t *testing.T) {
@ -133,4 +131,3 @@ func TestJsonQueryNumber(t *testing.T) {
println(string(buf))
}

1
weed/query/sqltypes/type.go

@ -99,4 +99,3 @@ const (
Bit = Type_BIT
TypeJSON = Type_JSON
)

2
weed/query/sqltypes/value.go

@ -19,7 +19,6 @@ type Value struct {
val []byte
}
// NewValue builds a Value using typ and val. If the value and typ
// don't match, it returns an error.
func NewValue(typ Type, val []byte) (v Value, err error) {
@ -62,7 +61,6 @@ func MakeTrusted(typ Type, val []byte) Value {
return Value{typ: typ, val: val}
}
// NewInt64 builds an Int64 Value.
func NewInt64(v int64) Value {
return MakeTrusted(Int64, strconv.AppendInt(nil, v, 10))

2
weed/server/volume_grpc_query.go

@ -36,8 +36,6 @@ func (vs *VolumeServer) Query(req *volume_server_pb.QueryRequest, stream volume_
if req.InputSerialization.CsvInput != nil {
}
if req.InputSerialization.JsonInput != nil {

Loading…
Cancel
Save