HyukjinKwon commented on code in PR #49836: URL: https://github.com/apache/spark/pull/49836#discussion_r1945913501
########## sql/connect/common/src/main/scala/org/apache/spark/sql/connect/RuntimeConfig.scala: ########## @@ -86,6 +86,11 @@ class RuntimeConfig private[sql] (client: SparkConnectClient) Option(get(entry.key, null)).map(entry.valueConverter).getOrElse(default) } + /** @inheritdoc */ + override private[sql] def contains(key: String): Boolean = { + get(key, null) != null Review Comment: ohh the default value is `null` -- 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. To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org