Github user jackylk commented on a diff in the pull request:
https://github.com/apache/incubator-carbondata/pull/339#discussion_r93011891
--- Diff:
core/src/main/java/org/apache/carbondata/core/cache/dictionary/ReverseDictionaryCache.java
---
@@ -167,12 +167,9 @@ private Dictionary getDictionary(
DictionaryColumnUniqueIdentifier dictionaryColumnUniqueIdentifier)
throws CarbonUtilException {
Dictionary reverseDictionary = null;
- // create column dictionary info object only if dictionary and its
- // metadata file exists for a given column identifier
- if (!isFileExistsForGivenColumn(dictionaryColumnUniqueIdentifier)) {
- throw new CarbonUtilException(
- "Either dictionary or its metadata does not exist for column
identifier :: "
- + dictionaryColumnUniqueIdentifier.getColumnIdentifier());
+ // create column dictionary info object only if it is primitive type.
+ if (dictionaryColumnUniqueIdentifier.getDataType().isComplexType()) {
--- End diff --
ok, I will change it to use assert
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---