You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@carbondata.apache.org by manishgupta88 <gi...@git.apache.org> on 2018/04/03 06:02:20 UTC

[GitHub] carbondata pull request #2134: [WIP][CARBONDATA-2310] Refactored code to imp...

Github user manishgupta88 commented on a diff in the pull request:

    https://github.com/apache/carbondata/pull/2134#discussion_r178720946
  
    --- Diff: core/src/main/java/org/apache/carbondata/core/cache/dictionary/ReverseDictionaryCache.java ---
    @@ -168,6 +168,10 @@ public ReverseDictionaryCache(CarbonLRUCache carbonLRUCache) {
                 CacheType.REVERSE_DICTIONARY));
       }
     
    +  @Override public void put(DictionaryColumnUniqueIdentifier key, Dictionary value) {
    +
    +  }
    +
    --- End diff --
    
    override the method in abstract class and in the implementation throw UnsupportedException for both reverse and forward cache


---