AMashenkov commented on a change in pull request #484:
URL: https://github.com/apache/ignite-3/pull/484#discussion_r762071193



##########
File path: 
modules/api/src/main/java/org/apache/ignite/schema/definition/builder/TableDefinitionBuilder.java
##########
@@ -27,6 +27,14 @@
  * Table definition builder.
  */
 public interface TableDefinitionBuilder extends SchemaObjectBuilder {
+    /**
+     * Adds columns to the table.
+     *
+     * @param columns Table columns definitions.
+     * @return {@code This} for chaining.
+     */
+    TableDefinitionBuilder columns(Iterable<ColumnDefinition> columns);

Review comment:
       Columns collection must be ordered. This is described in the SQL 
standard.
   Iterable implies no specific order. 




-- 
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]


Reply via email to