We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c7caf8 commit dc63dbeCopy full SHA for dc63dbe
sql/catalyst/src/main/scala/org/apache/spark/sql/internal/ReadOnlySQLConf.scala
@@ -51,6 +51,14 @@ class ReadOnlySQLConf(context: TaskContext) extends SQLConf {
51
override def clear(): Unit = {
52
throw new UnsupportedOperationException("Cannot mutate ReadOnlySQLConf.")
53
}
54
+
55
+ override def clone(): SQLConf = {
56
+ throw new UnsupportedOperationException("Cannot clone/copy ReadOnlySQLConf.")
57
+ }
58
59
+ override def copy(entries: (ConfigEntry[_], Any)*): SQLConf = {
60
61
62
63
64
class TaskContextConfigProvider(context: TaskContext) extends ConfigProvider {
0 commit comments