Fix dict encoding for timezone aware datetimes (#468)

Co-authored-by: James Hilton-Balfe <gobot1234yt@gmail.com>
This commit is contained in:
Jinyu Liu
2023-04-13 18:34:19 -04:00
committed by GitHub
parent b0b6cd24ad
commit 2b41383745
4 changed files with 97 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
syntax = "proto3";
package timestamp_dict_encode;
import "google/protobuf/timestamp.proto";
message Test {
google.protobuf.Timestamp ts = 1;
}