siddharthteotia commented on a change in pull request #5667: URL: https://github.com/apache/incubator-pinot/pull/5667#discussion_r455983567
########## File path: pinot-core/src/main/java/org/apache/pinot/core/segment/index/loader/defaultcolumn/V3DefaultColumnHandler.java ########## @@ -67,10 +67,19 @@ protected void updateDefaultColumn(String column, DefaultColumnAction action, In Set<String> textIndexColumns = indexLoadingConfig.getTextIndexColumns(); Review comment: done ########## File path: pinot-core/src/main/java/org/apache/pinot/core/segment/index/loader/defaultcolumn/BaseDefaultColumnHandler.java ########## @@ -325,77 +323,92 @@ protected void removeColumnV1Indices(String column) } /** - * Right now the text index is supported on RAW (non-dictionary encoded) + * Right now the text index is supported on RAW and dictionary encoded * single-value STRING columns. Eventually we will relax the constraints * step by step. * For example, later on user should be able to create text index on - * a dictionary encoded STRING column that also has native Pinot's inverted - * index. We can also support it on BYTE columns later. + * a MV column * @param column column name * @param indexLoadingConfig index loading config * @param fieldSpec field spec */ private void checkUnsupportedOperationsForTextIndex(String column, IndexLoadingConfig indexLoadingConfig, FieldSpec fieldSpec) { - if (!indexLoadingConfig.getNoDictionaryColumns().contains(column)) { - throw new UnsupportedOperationException( - "Text index is currently not supported on dictionary encoded column: " + column); - } - - Set<String> sortedColumns = new HashSet<>(indexLoadingConfig.getSortedColumns()); - if (sortedColumns.contains(column)) { - // since Pinot's current implementation doesn't support raw sorted columns, - // we need to check for this too - throw new UnsupportedOperationException("Text index is currently not supported on sorted column: " + column); - } - if (!fieldSpec.isSingleValueField()) { throw new UnsupportedOperationException("Text index is currently not supported on multi-value column: " + column); } - if (fieldSpec.getDataType() != DataType.STRING) { throw new UnsupportedOperationException("Text index is currently only supported on STRING column:" + column); } } void createV1ForwardIndexForTextIndex(String column, IndexLoadingConfig indexLoadingConfig) Review comment: Cleaned up the code to reuse existing ---------------------------------------------------------------- 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: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org