Github user xuanyuanking commented on a diff in the pull request:

    https://github.com/apache/spark/pull/21370#discussion_r189567614
  
    --- Diff: python/pyspark/sql/dataframe.py ---
    @@ -78,6 +78,12 @@ def __init__(self, jdf, sql_ctx):
             self.is_cached = False
             self._schema = None  # initialized lazily
             self._lazy_rdd = None
    +        self._eager_eval = sql_ctx.getConf(
    +            "spark.jupyter.eagerEval.enabled", "false").lower() == "true"
    +        self._default_console_row = int(sql_ctx.getConf(
    +            "spark.jupyter.default.showRows", u"20"))
    +        self._default_console_truncate = int(sql_ctx.getConf(
    +            "spark.jupyter.default.showRows", u"20"))
    --- End diff --
    
    My bad, sorry for this.


---

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

Reply via email to