(n sql.NullInt32)
| 1676 | } |
| 1677 | |
| 1678 | func nullInt32Ptr(n sql.NullInt32) *int32 { |
| 1679 | if !n.Valid { |
| 1680 | return nil |
| 1681 | } |
| 1682 | return &n.Int32 |
| 1683 | } |
| 1684 | |
| 1685 | func nullStringPtr(v sql.NullString) *string { |
| 1686 | if !v.Valid { |
no outgoing calls
no test coverage detected