Github user xuanyuanking commented on a diff in the pull request:
https://github.com/apache/spark/pull/21648#discussion_r199385323
--- Diff: python/pyspark/sql/context.py ---
@@ -93,6 +93,11 @@ def _ssql_ctx(self):
"""
return self._jsqlContext
+ @property
+ def _conf(self):
+ """Accessor for the JVM SQL-specific configurations"""
+ return self.sparkSession._jsparkSession.sessionState().conf()
--- End diff --
Thanks for your advise, I want to change the comments in
```
"""Accessor for the JVM SQL-specific configurations.
This property returns a SQLConf which keep same behavior in scala
SQLContext,
we mainly use this to call the helper methods in SQLConf.
"""
```
Do you think it's reasonable.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]