You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ignite.apache.org by GitBox <gi...@apache.org> on 2022/03/09 10:07:55 UTC

[GitHub] [ignite-3] ygerzhedovich commented on a change in pull request #708: IGNITE-16593 Schema should keep colocation information

ygerzhedovich commented on a change in pull request #708:
URL: https://github.com/apache/ignite-3/pull/708#discussion_r822484661



##########
File path: modules/schema/src/main/java/org/apache/ignite/internal/schema/definition/builder/PrimaryKeyDefinitionBuilderImpl.java
##########
@@ -98,12 +98,12 @@ public PrimaryKeyDefinition build() {
 
         Set<String> cols = Set.copyOf(columns);
 
-        Set<String> affCols;
+        List<String> affCols;
 
         if (CollectionUtils.nullOrEmpty(affinityColumns)) {
-            affCols = cols;
+            affCols = List.copyOf(columns);
         } else {
-            affCols = Set.copyOf(affinityColumns);
+            affCols = List.copyOf(affinityColumns);

Review comment:
       Earlier we took only unique columns. Should we check that we don't use the same coumns twise?




-- 
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: notifications-unsubscribe@ignite.apache.org

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