ibessonov commented on a change in pull request #122:
URL: https://github.com/apache/ignite-3/pull/122#discussion_r639469065
##########
File path:
modules/api/src/main/java/org/apache/ignite/configuration/schemas/table/TableIndexConfigurationSchema.java
##########
@@ -36,21 +36,21 @@
/** Has default value flag. */
@Value(hasDefault = true)
- boolean uniq = false;
+ public boolean uniq = false;
/** Columns configuration for sorted indexes. */
@NamedConfigValue
IndexColumnConfigurationSchema columns;
Review comment:
This one has default values, we can't access package-private fields
anymore because class loaders are different. I'd prefer making all fields
public in another ticket.
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]