(v sql.NullInt64)
| 1668 | } |
| 1669 | |
| 1670 | func nullInt64Ptr(v sql.NullInt64) *int64 { |
| 1671 | if !v.Valid { |
| 1672 | return nil |
| 1673 | } |
| 1674 | value := v.Int64 |
| 1675 | return &value |
| 1676 | } |
| 1677 | |
| 1678 | func nullInt32Ptr(n sql.NullInt32) *int32 { |
| 1679 | if !n.Valid { |
no outgoing calls
no test coverage detected