Uploaded image for project: 'Spark'
  1. Spark
  2. SPARK-41279 Feature parity: DataFrame API in Spark Connect
  3. SPARK-41869

DataFrame dropDuplicates should throw error on non list argument

Attach filesAttach ScreenshotVotersWatch issueWatchersLinkCloneUpdate Comment AuthorReplace String in CommentUpdate Comment VisibilityDelete Comments
    XMLWordPrintableJSON

Details

    • Sub-task
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • 3.4.0
    • 3.4.0
    • Connect
    • None

    Description

      df = self.spark.createDataFrame([("Alice", 50), ("Alice", 60)], ["name", "age"])
      
      # shouldn't drop a non-null row
      self.assertEqual(df.dropDuplicates().count(), 2)
      
      self.assertEqual(df.dropDuplicates(["name"]).count(), 1)
      
      self.assertEqual(df.dropDuplicates(["name", "age"]).count(), 2)
      
      type_error_msg = "Parameter 'subset' must be a list of columns"
      with self.assertRaisesRegex(TypeError, type_error_msg):
          df.dropDuplicates("name")
      Traceback (most recent call last):
        File "/Users/s.singh/personal/spark-oss/python/pyspark/sql/tests/test_dataframe.py", line 128, in test_drop_duplicates
          with self.assertRaisesRegex(TypeError, type_error_msg):
      AssertionError: TypeError not raised

      Attachments

        Activity

          This comment will be Viewable by All Users Viewable by All Users
          Cancel

          People

            gurwls223 Hyukjin Kwon
            techaddict Sandeep Singh
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Slack

                Issue deployment