You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
messageStruct {
// Unordered map of dynamically typed values.map<string, Value> fields=1;
}
// `Value` represents a dynamically typed value which can be either// null, a number, a string, a boolean, a recursive struct value, or a// list of values. A producer of value is expected to set one of these// variants. Absence of any variant indicates an error.//// The JSON representation for `Value` is JSON value.messageValue {
// The kind of value.oneofkind {
// Represents a null value.NullValuenull_value=1;
// Represents a double value.doublenumber_value=2;
// Represents a string value.stringstring_value=3;
// Represents a boolean value.boolbool_value=4;
// Represents a structured value.Structstruct_value=5;
// Represents a repeated `Value`.ListValuelist_value=6;
}
}
google.protobuf.Struct properties is a recursive type. We can cover this case by parsing it to Jsonb.
google.protobuf.Struct properties
is a recursive type. We can cover this case by parsing it to Jsonb.Meanwhile, we should ban other recursive types.
Originally posted by @yuhao-su in #10443 (comment)
cc. @tabVersion
The text was updated successfully, but these errors were encountered: