adelapena commented on code in PR #2459:
URL: https://github.com/apache/cassandra/pull/2459#discussion_r1277385746
##########
src/java/org/apache/cassandra/cql3/CQL3Type.java:
##########
@@ -867,6 +867,12 @@ public CQL3Type prepare(String keyspace, Types udts)
throws InvalidRequestExcept
CQL3Type type = element.prepare(keyspace, udts);
return new Vector(type.getType(), dimention);
}
+
+ @Override
+ public String toString()
+ {
+ return "vector<" + element.toString() + ", " + dimention + '>';
Review Comment:
Good catch. This misspelling was pointed out during the review of
CASSANDRA-18504, but we still missed it in some places. I think I have fixed it
everywhere.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]