Skip to content
Snippets Groups Projects
Commit 967d3aa2 authored by Daniel Hornung's avatar Daniel Hornung
Browse files

FIX: The server only supports 32bit integer values as of now.

parent 5eec0072
No related branches found
No related tags found
1 merge request!3Switch integer values to int32
Pipeline #12621 passed with warnings
...@@ -90,7 +90,7 @@ message ScalarValue { ...@@ -90,7 +90,7 @@ message ScalarValue {
// Wraps different optimized representations of a single value. // Wraps different optimized representations of a single value.
oneof scalar_value { oneof scalar_value {
// The value as integer // The value as integer
int64 integer_value = 1; int32 integer_value = 1;
// The value as double // The value as double
double double_value = 2; double double_value = 2;
// The value as bool // The value as bool
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment