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

    https://github.com/apache/spark/pull/4187#discussion_r23504700
  
    --- 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
    +
    +  override def hasDictionarySupport: Boolean = true
    +
    +  override def setDictionary(dictionary: Dictionary):Unit =
    +    dict = (for (i <- 0 to dictionary.getMaxId)
    --- End diff --
    
    oh right, sorry I missed the `yield`.  


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to