tkalkirill commented on code in PR #2493:
URL: https://github.com/apache/ignite-3/pull/2493#discussion_r1305330841
##########
modules/catalog/src/main/java/org/apache/ignite/internal/catalog/commands/CreateTableParams.java:
##########
@@ -113,8 +99,9 @@ public Builder primaryKeyColumns(List<String> pkCols) {
*
* @param colocationCols Colocation column names.
* @return {@code this}.
+ * @throws NullPointerException If the colocation column names is
{@code null} or one of its elements.
*/
- public Builder colocationColumns(@Nullable List<String>
colocationCols) {
+ public Builder colocationColumns(List<String> colocationCols) {
params.colocationCols = colocationCols;
Review Comment:
fix it
--
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]