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 7dc32ba commit f66e658Copy full SHA for f66e658
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/types/dataTypes.scala
@@ -164,6 +164,7 @@ case object BinaryType extends DataType with PrimitiveType {
164
165
case class FixedLenByteArrayType( length:Int ) extends DataType with PrimitiveType {
166
type JvmType = Array[Byte]
167
+ def simpleString: String = "fixed_len_byte_array(%d)".format(length)
168
}
169
170
case object BooleanType extends NativeType with PrimitiveType {
0 commit comments