| 132 | } |
| 133 | |
| 134 | type TimestampCodec struct { |
| 135 | // ScanLocation is the location that the time is assumed to be in for scanning. This is different from |
| 136 | // TimestamptzCodec.ScanLocation in that this setting does change the instant in time that the timestamp represents. |
| 137 | ScanLocation *time.Location |
| 138 | } |
| 139 | |
| 140 | func (*TimestampCodec) FormatSupported(format int16) bool { |
| 141 | return format == TextFormatCode || format == BinaryFormatCode |
nothing calls this directly
no outgoing calls
no test coverage detected