codope commented on code in PR #9872:
URL: https://github.com/apache/hudi/pull/9872#discussion_r1379927596
##########
hudi-common/src/main/java/org/apache/hudi/index/secondary/HoodieSecondaryIndex.java:
##########
@@ -17,7 +17,7 @@
* under the License.
*/
-package org.apache.hudi.secondary.index;
+package org.apache.hudi.index.secondary;
Review Comment:
Not public yet. There is no concrete impl in any released version or master.
There is a PR in review - #6677
##########
hudi-common/src/main/java/org/apache/hudi/metadata/MetadataPartitionType.java:
##########
@@ -28,7 +28,8 @@ public enum MetadataPartitionType {
FILES(HoodieTableMetadataUtil.PARTITION_NAME_FILES, "files-"),
COLUMN_STATS(HoodieTableMetadataUtil.PARTITION_NAME_COLUMN_STATS,
"col-stats-"),
BLOOM_FILTERS(HoodieTableMetadataUtil.PARTITION_NAME_BLOOM_FILTERS,
"bloom-filters-"),
- RECORD_INDEX(HoodieTableMetadataUtil.PARTITION_NAME_RECORD_INDEX,
"record-index-");
+ RECORD_INDEX(HoodieTableMetadataUtil.PARTITION_NAME_RECORD_INDEX,
"record-index-"),
+
FUNCTIONAL_INDEX(HoodieTableMetadataUtil.PARTITION_NAME_FUNCTIONAL_INDEX_PREFIX,
"func_index_");
Review Comment:
done
--
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]