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 c082385 commit b6d63d5Copy full SHA for b6d63d5
sql/core/src/main/scala/org/apache/spark/sql/sources/ddl.scala
@@ -110,7 +110,8 @@ private[sql] case class CreateTableUsing(
110
/**
111
* Builds a map in which keys are case insensitive
112
*/
113
-protected class CaseInsensitiveMap(map: Map[String, String]) extends Map[String, String] {
+protected class CaseInsensitiveMap(map: Map[String, String]) extends Map[String, String]
114
+ with Serializable {
115
116
val baseMap = map.map(kv => kv.copy(_1 = kv._1.toLowerCase))
117
0 commit comments