In an Avro flat or nested schema, the following four fields define each source column:
Column definition:
{"name" : "COL1", "type" : [ "null", "string" ], "doc" : "...", "default" : null}
Column value is-present indicator:
{"name" : "COL1_Present", "type" : "boolean", "doc" : "Contains true when the value of field COL1 is present in the change data stream", "default" : false}
Column before image:
{"name" : "COL1_BeforeImage", "type" : [ "null", "string" ],"doc" : "Contains the before image of field COL1", "default" : null}
Column before image is-present indicator:
{"name" : "COL1_BeforeImage_Present", "type" : "boolean", "doc" : "Contains true when the value of field COL1_OLD is present.", "default" : false}
For example, two columns named "COL1" and "COL2" have the following Avro definitions:
{"name" : "COL1", "type" : [ "null", "string" ], "doc" : "...", "default" : null}
{"name" : "COL1_Present", "type" : "boolean", "doc" : …}
{"name" : "COL1_BeforeImage", "type" : [ "null", "string" ],"doc" : … }
{"name" : "COL1_BeforeImage_Present", "type" : "boolean", "doc" : …}
{"name" : "COL2", "type" : [ "null", "string" ], "doc" : "...", "default" : null}
{"name" : "COL2_Present", "type" : "boolean", "doc" : …}
{"name" : "COL2_BeforeImage", "type" : [ "null", "string" ],"doc" : … }
{"name" : "COL2_BeforeImage_Present", "type" : "boolean", "doc" : …}