tkalkirill commented on code in PR #2680:
URL: https://github.com/apache/ignite-3/pull/2680#discussion_r1356489320
##########
modules/catalog/src/main/java/org/apache/ignite/internal/catalog/descriptors/CatalogSortedIndexDescriptor.java:
##########
@@ -38,25 +36,27 @@ public class CatalogSortedIndexDescriptor extends
CatalogIndexDescriptor {
* @param tableId Id of the table index belongs to.
* @param unique Unique flag.
* @param columns A list of columns descriptors.
+ * @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 or
columns size doesn't match the collations size.
*/
- public CatalogSortedIndexDescriptor(int id, String name, int tableId,
boolean unique, List<CatalogIndexColumnDescriptor> columns) {
- super(id, name, tableId, unique);
+ public CatalogSortedIndexDescriptor(
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]