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

    https://github.com/apache/spark/pull/6796#discussion_r33133479
  
    --- Diff: 
sql/core/src/main/scala/org/apache/spark/sql/parquet/ParquetTableSupport.scala 
---
    @@ -369,9 +371,6 @@ private[parquet] class MutableRowWriteSupport extends 
RowWriteSupport {
           case DateType => writer.addInteger(record.getInt(index))
           case TimestampType => writeTimestamp(record.getLong(index))
           case d: DecimalType =>
    -        if (d.precisionInfo == None || d.precisionInfo.get.precision > 18) 
{
    -          sys.error(s"Unsupported datatype $d, cannot write to consumer")
    -        }
    --- End diff --
    
    I don't think Parquet allow mixed decimal precision. However, Hive uses a 
default precision = 10 and a default scale = 0 when precision/scale information 
is missing. I also did the same thing in #6617.


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