Github user cloud-fan commented on a diff in the pull request:

    https://github.com/apache/spark/pull/11756#discussion_r56323218
  
    --- Diff: python/pyspark/sql/readwriter.py ---
    @@ -162,6 +162,14 @@ def json(self, path, schema=None):
                     (e.g. 00012)
                 * ``allowBackslashEscapingAnyCharacter`` (default ``false``): 
allows accepting quoting \
                     of all character using backslash quoting mechanism
    +            *  ``mode`` (default ``PERMISSIVE``): allows a mode for 
dealing with corrupt records \
    +                during parsing.
    +                *  ``PERMISSIVE`` : sets other fields to ``null`` when it 
meets a corrupted \
    +                  record and puts the malformed string into a new field 
configured by \
    +                 ``spark.sql.columnNameOfCorruptRecord``. When a schema is 
set by user, it sets \
    +                 ``null`` for extra fields.
    +                *  ``DROPMALFORMED`` : ignores the whole corrupted records 
and append.
    --- End diff --
    
    should remove `and append`?


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