(t pgtype.Timestamp)
| 503 | } |
| 504 | |
| 505 | func pgTimePtr(t pgtype.Timestamp) *time.Time { |
| 506 | if t.Valid { |
| 507 | return &t.Time |
| 508 | } |
| 509 | return nil |
| 510 | } |
| 511 | |
| 512 | func pgInt32ToInt(p *int32) *int { |
| 513 | if p == nil { |
no outgoing calls
no test coverage detected