tkalkirill commented on code in PR #2680:
URL: https://github.com/apache/ignite-3/pull/2680#discussion_r1356486716


##########
modules/catalog/src/main/java/org/apache/ignite/internal/catalog/descriptors/CatalogHashIndexDescriptor.java:
##########
@@ -37,10 +35,11 @@ public class CatalogHashIndexDescriptor extends 
CatalogIndexDescriptor {
      * @param tableId Id of the table index belongs to.
      * @param unique Unique flag.
      * @param columns A list of indexed columns. Must not contains duplicates.
+     * @param writeOnly State of the index, {@code true} when index is 
building, {@code false} when the index is built.
      * @throws IllegalArgumentException If columns list contains duplicates.
      */
-    public CatalogHashIndexDescriptor(int id, String name, int tableId, 
boolean unique, List<String> columns) {
-        super(id, name, tableId, unique);
+    public CatalogHashIndexDescriptor(int id, String name, int tableId, 
boolean unique, List<String> columns, boolean writeOnly) {
+        super(id, name, tableId, unique, writeOnly);

Review Comment:
   Why not.



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