diff --git a/documentation/modules/ROOT/pages/connectors/db2.adoc b/documentation/modules/ROOT/pages/connectors/db2.adoc index 8ffc02682..b2da93212 100644 --- a/documentation/modules/ROOT/pages/connectors/db2.adoc +++ b/documentation/modules/ROOT/pages/connectors/db2.adoc @@ -342,6 +342,11 @@ The message contains a logical representation of the table schema. "autoIncremented": false, "generated": false } + ], + "attributes": [ // <10> + { + "customAttribute": "attributeValue" + } ] } } @@ -400,6 +405,10 @@ a|Describes the kind of change. The value is one of the following: |`columns` |Metadata for each column in the changed table. +|10 +|`attributes` +|Custom attribute metadata for each table change. + |=== In messages that the connector sends to the schema change topic, the message key is the name of the database that contains the schema change. diff --git a/documentation/modules/ROOT/pages/connectors/mysql.adoc b/documentation/modules/ROOT/pages/connectors/mysql.adoc index 82b687d57..a46d28d01 100644 --- a/documentation/modules/ROOT/pages/connectors/mysql.adoc +++ b/documentation/modules/ROOT/pages/connectors/mysql.adoc @@ -281,6 +281,11 @@ The message contains a logical representation of the table schema. "autoIncremented": false, "generated": false } + ], + "attributes": [ <11> + { + "customAttribute": "attributeValue" + } ] } } @@ -352,6 +357,10 @@ In the case of a table rename, this identifier is a concatenation of `__,_< |`columns` |Metadata for each column in the changed table. +|11 +|`attributes` +|Custom attribute metadata for each table change. + |=== See also: xref:{link-mysql-connector}#mysql-schema-history-topic[schema history topic]. diff --git a/documentation/modules/ROOT/pages/connectors/oracle.adoc b/documentation/modules/ROOT/pages/connectors/oracle.adoc index 6bd7b1e5d..1c151e07b 100644 --- a/documentation/modules/ROOT/pages/connectors/oracle.adoc +++ b/documentation/modules/ROOT/pages/connectors/oracle.adoc @@ -329,6 +329,11 @@ The message contains a logical representation of the table schema. "autoIncremented": false, "generated": false } + ], + "attributes": [ // <10> + { + "customAttribute": "attributeValue" + } ] } } @@ -386,6 +391,10 @@ In the case of a table rename, this identifier is a concatenation of `__,_< |`columns` |Metadata for each column in the changed table. +|10 +|`attributes` +|Custom attribute metadata for each table change. + |=== In messages that the connector sends to the schema change topic, the message key is the name of the database that contains the schema change. diff --git a/documentation/modules/ROOT/pages/connectors/sqlserver.adoc b/documentation/modules/ROOT/pages/connectors/sqlserver.adoc index d8fe20676..ece952a02 100644 --- a/documentation/modules/ROOT/pages/connectors/sqlserver.adoc +++ b/documentation/modules/ROOT/pages/connectors/sqlserver.adoc @@ -346,6 +346,11 @@ The message contains a logical representation of the table schema. "autoIncremented": false, "generated": false } + ], + "attributes": [ // <10> + { + "customAttribute": "attributeValue" + } ] } } @@ -404,6 +409,10 @@ a|Describes the kind of change. The value is one of the following: |`columns` |Metadata for each column in the changed table. +|10 +|`attributes` +|Custom attribute metadata for each table change. + |=== In messages that the connector sends to the schema change topic, the key is the name of the database that contains the schema change.