Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing integer types to protobuf conversion #82

Merged
merged 1 commit into from
Aug 7, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
### Fixed
- Google Cloud Output failure when sent a field of type uint16

## [0.9.7] - 2020-08-05
### Changed
- In the file input operator, file name and path fields are now added with `include_file_name` (default `true`) and `include_file_path` (default `false`)
Expand Down
12 changes: 11 additions & 1 deletion operator/builtin/output/google_cloud.go
Original file line number Diff line number Diff line change
Expand Up @@ -290,16 +290,26 @@ func jsonValueToStructValue(v interface{}) *structpb.Value {
switch x := v.(type) {
case bool:
return &structpb.Value{Kind: &structpb.Value_BoolValue{BoolValue: x}}
case float32:
return &structpb.Value{Kind: &structpb.Value_NumberValue{NumberValue: float64(x)}}
case float64:
return &structpb.Value{Kind: &structpb.Value_NumberValue{NumberValue: x}}
case int:
return &structpb.Value{Kind: &structpb.Value_NumberValue{NumberValue: float64(x)}}
case int64:
case int8:
return &structpb.Value{Kind: &structpb.Value_NumberValue{NumberValue: float64(x)}}
case int16:
return &structpb.Value{Kind: &structpb.Value_NumberValue{NumberValue: float64(x)}}
case int32:
return &structpb.Value{Kind: &structpb.Value_NumberValue{NumberValue: float64(x)}}
case int64:
return &structpb.Value{Kind: &structpb.Value_NumberValue{NumberValue: float64(x)}}
case uint:
return &structpb.Value{Kind: &structpb.Value_NumberValue{NumberValue: float64(x)}}
case uint8:
return &structpb.Value{Kind: &structpb.Value_NumberValue{NumberValue: float64(x)}}
case uint16:
return &structpb.Value{Kind: &structpb.Value_NumberValue{NumberValue: float64(x)}}
case uint32:
return &structpb.Value{Kind: &structpb.Value_NumberValue{NumberValue: float64(x)}}
case uint64:
Expand Down