Commits


rsgowman authored and GitHub committed 277976a9763
Reduce size of model::FieldValue (#2268) Replaced the following fields within the FieldValue union with (unique) pointers instead: * object_value_ (48 bytes) * server_timestamp_value_ (40) * string_value_ (32) * blob_value_ (24) * reference_value_ (24) * array_value_ (24) * timestamp_value_ (16) * geo_point_value_ (16) sizeof(FieldValue): 56 -> 16 bytes.