I am having one protobuf message -
message Sample{
string field1 = 1;
string field2 = 2;
string field3 = 3;
}
These messages are stored in datastore in binary format. So if I want to remove any of the defined field in the above message will it cause any issue in deserialization of the message from datastore?