Yang Jie created SPARK-46066:
--------------------------------

             Summary: Use the Separators API instead of the String API to 
construct the DefaultPrettyPrinter
                 Key: SPARK-46066
                 URL: https://issues.apache.org/jira/browse/SPARK-46066
             Project: Spark
          Issue Type: Improvement
          Components: SQL
    Affects Versions: 4.0.0
            Reporter: Yang Jie


{code:java}
/**
 * Constructor that specifies separator String to use between root values;
 * if null, no separator is printed.
 *<p>
 * Note: simply constructs a {@link SerializedString} out of parameter,
 * calls {@link #DefaultPrettyPrinter(SerializableString)}
 *
 * @param rootSeparator String to use as root value separator
 * @deprecated in 2.16. Use the Separators API instead.
 */
@Deprecated
public DefaultPrettyPrinter(String rootSeparator) {
    this((rootSeparator == null) ? null : new SerializedString(rootSeparator));
} {code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

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

Reply via email to