Skip to content

Commit

Permalink
Regenerate go protos (#313)
Browse files Browse the repository at this point in the history
  • Loading branch information
Chen Zhiling authored and feast-ci-bot committed Nov 19, 2019
1 parent b62de38 commit 8904c04
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 64 deletions.
117 changes: 53 additions & 64 deletions sdk/go/protos/feast/core/CoreService.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions sdk/go/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ func Int64Val(val int64) *types.Value {
return &types.Value{Val: &types.Value_Int64Val{Int64Val: val}}
}

// FloatVal is a float32 type feast value
func FloatVal(val float32) *types.Value {
return &types.Value{Val: &types.Value_FloatVal{FloatVal: val}}
}

// DoubleVal is a float64 type feast value
func DoubleVal(val float64) *types.Value {
return &types.Value{Val: &types.Value_DoubleVal{DoubleVal: val}}
Expand Down

0 comments on commit 8904c04

Please sign in to comment.