Interface AvroSerializationOptionsOrBuilder (2.47.0)

public interface AvroSerializationOptionsOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getEnableDisplayNameAttribute()

public abstract boolean getEnableDisplayNameAttribute()

Enable displayName attribute in Avro schema.

The Avro specification requires field names to be alphanumeric. By default, in cases when column names do not conform to these requirements (e.g. non-ascii unicode codepoints) and Avro is requested as an output format, the CreateReadSession call will fail.

Setting this field to true, populates avro field names with a placeholder value and populates a "displayName" attribute for every avro field with the original column name.

bool enable_display_name_attribute = 1;

Returns
TypeDescription
boolean

The enableDisplayNameAttribute.