EventHubs write - allow Properties map to be non-nullable or nullable column (#507)

This commit is contained in:
Wesley Hoffman 2020-04-24 15:13:30 -07:00 коммит произвёл GitHub
Родитель 99a0852a3d
Коммит d096e298e6
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -199,6 +199,7 @@ private[eventhubs] abstract class EventHubsRowWriter(inputSchema: Seq[Attribute]
propertiesExpression.dataType match {
case MapType(StringType, StringType, true) => // good
case MapType(StringType, StringType, false) => // good
case t =>
throw new IllegalStateException(
s"${EventHubsWriter.PropertiesAttributeName} attribute unsupported type $t"