nchammas commented on a change in pull request #27459: [SPARK-30510][SQL][Docs]
Publicly document Spark SQL configuration options
URL: https://github.com/apache/spark/pull/27459#discussion_r374942076
##########
File path: sql/gen-sql-markdown.py
##########
@@ -47,6 +53,18 @@ def _list_function_infos(jvm):
return sorted(infos, key=lambda i: i.name)
+def _list_sql_configs(jvm):
+ sql_configs = [
+ SQLConfEntry(
+ name=_sql_config._1(),
+ default=_sql_config._2(),
Review comment:
I noticed some strange values here like `67108864b`, where it looks like we
need to do some kind of type casting somewhere, perhaps on the Scala side.
Same goes for stuff like `<undefined>` and `<value of ...>`, which I am
handling down in `generate_sql_configs_table()` as a formatting step using
regular expressions.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]