pub fn cdc_envelope_schema(table_schema: &Schema) -> SchemaExpand description
Builds the CDC envelope schema for MySQL CDC records.
The envelope wraps the actual row data with CDC metadata:
_table: Source table name_op: Operation type (I/U/D)_ts_ms: Event timestamp_binlog_file: Binlog filename_binlog_pos: Position in binlog_gtid: GTID (if available)_before: Before image (for updates/deletes)_after: After image (for inserts/updates)