AMashenkov commented on a change in pull request #309:
URL: https://github.com/apache/ignite-3/pull/309#discussion_r706035099
##########
File path:
modules/api/src/main/java/org/apache/ignite/schema/builder/SchemaTableBuilder.java
##########
@@ -35,6 +35,14 @@
*/
SchemaTableBuilder columns(Column... columns);
+ /**
+ * Adds columns to the table.
+ *
+ * @param columns Table columns.
+ * @return {@code This} for chaining.
+ */
+ SchemaTableBuilder columns(Iterable<Column> columns);
Review comment:
Let's drop `SchemaTableBuilder columns(Column... columns) `method,
as user always can call builder.columns(List.of(Columns[])
--
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]