joao-r-reis commented on code in PR #1899:
URL: 
https://github.com/apache/cassandra-gocql-driver/pull/1899#discussion_r2181277494


##########
marshal.go:
##########
@@ -2352,7 +2370,7 @@ func (inetType) Type() Type {
 
 // Zero returns the zero value for the inet CQL type.
 func (inetType) Zero() interface{} {
-       return net.IP(nil)
+       return net.IP{}

Review Comment:
   should be fixed now



##########
vector.go:
##########
@@ -173,7 +183,7 @@ func (v VectorType) Unmarshal(data []byte, value 
interface{}) error {
                }
                return nil
        }
-       return unmarshalErrorf("can not unmarshal %s into %T. Accepted types: 
slice, array.", v, value)
+       return unmarshalErrorf("can not unmarshal %s into %T. Accepted types: 
slice, array, *interface{}.", v, value)

Review Comment:
   done



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: pr-unsubscr...@cassandra.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: pr-unsubscr...@cassandra.apache.org
For additional commands, e-mail: pr-h...@cassandra.apache.org

Reply via email to