(v int64)
| 674 | } |
| 675 | |
| 676 | func nullInt64(v int64) sql.NullInt64 { |
| 677 | return sql.NullInt64{Int64: v, Valid: v != 0} |
| 678 | } |
| 679 | |
| 680 | func nullString(value string) sql.NullString { |
| 681 | return sql.NullString{String: value, Valid: value != ""} |
no outgoing calls
no test coverage detected