Skip to content

Commit 284ab70

Browse files
committed
fix test
1 parent 991a7ec commit 284ab70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/core/src/main/scala/org/apache/spark/sql/api/python/PythonSQLUtils.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ private[sql] object PythonSQLUtils {
4343
def listSQLConfigs(): Array[(String, String, String, String)] = {
4444
val conf = new SQLConf()
4545
// Py4J doesn't seem to translate Seq well, so we convert to an Array.
46-
conf.getAllDefinedConfs.toArray
46+
conf.getAllDefinedConfs.filterNot(p => SQLConf.staticConfKeys.contains(p._1)).toArray
4747
}
4848

4949
def listStaticSQLConfigs(): Array[(String, String, String, String)] = {

0 commit comments

Comments
 (0)