AMashenkov commented on a change in pull request #7813:
URL: https://github.com/apache/ignite/pull/7813#discussion_r426693150
##########
File path:
modules/core/src/main/java/org/apache/ignite/internal/processors/query/schema/SchemaChangeListener.java
##########
@@ -55,4 +58,17 @@
* @param cacheInfo Cache info.
*/
void onSqlTypeDrop(String schemaName, GridQueryTypeDescriptor
typeDescriptor, GridCacheContextInfo<?,?> cacheInfo);
+
+ /**
+ * Callback on index creation.
+ */
+ void onIndexCreate(String schemaName, String tblName, String idxName,
GridQueryIndexDescriptor idxDesc,
Review comment:
javadoc
##########
File path:
modules/core/src/main/java/org/apache/ignite/internal/processors/query/schema/SchemaChangeListener.java
##########
@@ -55,4 +58,17 @@
* @param cacheInfo Cache info.
*/
void onSqlTypeDrop(String schemaName, GridQueryTypeDescriptor
typeDescriptor, GridCacheContextInfo<?,?> cacheInfo);
+
+ /**
+ * Callback on index creation.
+ */
+ void onIndexCreate(String schemaName, String tblName, String idxName,
GridQueryIndexDescriptor idxDesc,
+ GridIndex idx);
+
+ /**
+ * Callback on index drop.
+ */
+ void onIndexDrop(String schemaName, String tblName, String idxName);
Review comment:
javadoc
----------------------------------------------------------------
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]