type database/sql.NullInt64

6 uses

	database/sql (current package)
		sql.go#L214: type NullInt64 struct {
		sql.go#L220: func (n *NullInt64) Scan(value any) error {
		sql.go#L230: func (n NullInt64) Value() (driver.Value, error) {

	github.com/go-pg/pg/v10/orm
		table.go#L47: 	nullIntType        = reflect.TypeOf((*sql.NullInt64)(nil)).Elem()
		table.go#L1485: 			ptr := fv.Addr().Interface().(*sql.NullInt64)
		table.go#L1486: 			*ptr = sql.NullInt64{Int64: time.Now().UnixNano()}