Pochatkin commented on code in PR #3856:
URL: https://github.com/apache/ignite-3/pull/3856#discussion_r1625536353
##########
modules/api/src/main/java/org/apache/ignite/catalog/annotations/Zone.java:
##########
@@ -26,15 +25,22 @@
/**
* Describes a distribution zone.
*/
-@Target(TYPE)
+@Target({})
@Retention(RUNTIME)
public @interface Zone {
/**
* The name of the zone. If it's empty, the name of the class annotated
with this annotation will be used.
*
* @return The name of the zone.
*/
- String value() default "";
+ String value();
+
+ /**
+ * Storage profiles.
+ *
+ * @return Storage profiles.
+ */
+ String storageProfiles();
Review Comment:
Combine field without default values
--
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]