You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Davies Liu (JIRA)" <ji...@apache.org> on 2015/05/31 07:17:17 UTC

[jira] [Created] (SPARK-7978) DecimalType should not be singleton

Davies Liu created SPARK-7978:
---------------------------------

             Summary: DecimalType should not be singleton
                 Key: SPARK-7978
                 URL: https://issues.apache.org/jira/browse/SPARK-7978
             Project: Spark
          Issue Type: Bug
          Components: PySpark, SQL
    Affects Versions: 1.4.0
            Reporter: Davies Liu
            Assignee: Davies Liu
            Priority: Blocker


The DecimalType can not be constructed with parameters. When it's constructed without parameters, we always get same objects, which is wrong.

{code}
>>> from pyspark.sql.types import *
>>> DecimalType(1, 2)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: __call__() takes exactly 1 argument (3 given)
>>> DecimalType()
DecimalType()
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org