(ts *v1pb.RowValue_TimestampTZ)
| 32 | } |
| 33 | |
| 34 | func formatTimestampTz(ts *v1pb.RowValue_TimestampTZ) string { |
| 35 | t := ts.GoogleTimestamp.AsTime() |
| 36 | z := time.FixedZone(ts.GetZone(), int(ts.GetOffset())) |
| 37 | return t.In(z).Format(timestampTzFormat) |
| 38 | } |
no test coverage detected