File tree Expand file tree Collapse file tree
parquet-column/src/main/java/org/apache/parquet/column Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -453,7 +453,7 @@ void writeValue() {
453453 this .writerVersion = writerVersion ;
454454 this .maxDefinitionLevel = path .getMaxDefinitionLevel ();
455455 DictionaryPage dictionaryPage = pageReader .readDictionaryPage ();
456- this .dictionary = dictionaryPage == null ? null : dictionaryPage .getDictionary (path );
456+ this .dictionary = dictionaryPage == null ? null : dictionaryPage .decode (path );
457457 if (dictionary != null && converter .hasDictionarySupport ()) {
458458 converter .setDictionary (dictionary );
459459 }
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ public DictionaryPage copy() throws IOException {
8080 /**
8181 * @return the decoded dictionary
8282 */
83- public Dictionary getDictionary (ColumnDescriptor path ) {
83+ public Dictionary decode (ColumnDescriptor path ) {
8484 try {
8585 return getEncoding ().initDictionary (path , this );
8686 } catch (IOException e ) {
You can’t perform that action at this time.
0 commit comments