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

    https://github.com/apache/spark/pull/4187#discussion_r23500891
  
    --- Diff: 
sql/core/src/main/scala/org/apache/spark/sql/parquet/ParquetConverter.scala ---
    @@ -426,6 +423,33 @@ private[parquet] class CatalystPrimitiveConverter(
         parent.updateLong(fieldIndex, value)
     }
     
    +/**
    + * A `parquet.io.api.PrimitiveConverter` that converts Parquet Binary to 
Catalyst String.
    + * Supports dictionaries to reduce Binary to String conversion overhead.
    + *
    + * Follows pattern in Parquet of using dictionaries, where supported, for 
String conversion.
    + *
    + * @param parent The parent group converter.
    + * @param fieldIndex The index inside the record.
    + */
    +private[parquet] class CatalystPrimitiveStringConverter(parent: 
CatalystConverter, fieldIndex: Int)
    +  extends CatalystPrimitiveConverter(parent, fieldIndex) {
    +
    +  private var dict: Array[String] = null
    --- End diff --
    
    do we care about performance here at all? if yes, we should make this
    
    private[this] 


---
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.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to