[docs] Fixing rendering issue

This commit is contained in:
Gunnar Morling 2021-11-26 15:38:40 +01:00
parent 5866056a41
commit 5067b30b5b

View File

@ -206,7 +206,7 @@ The message contains a logical representation of the table schema.
...
},
"payload": {
"source": { // <1>
"source": { //<1>
"version": "{debezium-version}",
"connector": "mysql",
"name": "dbserver1",
@ -223,19 +223,19 @@ The message contains a logical representation of the table schema.
"thread": null,
"query": null
},
"databaseName": "inventory", // <2>
"databaseName": "inventory", //<2>
"schemaName": null,
"ddl": "ALTER TABLE customers ADD COLUMN middle_name VARCHAR(2000)", // <3>
"tableChanges": [ // <4>
"ddl": "ALTER TABLE customers ADD COLUMN middle_name VARCHAR(2000)", //<3>
"tableChanges": [ //<4>
{
"type": "ALTER", // <5>
"id": "\"inventory\".\"customers\"", // <6>
"table": { // <7>
"type": "ALTER", //<5>
"id": "\"inventory\".\"customers\"", //<6>
"table": { //<7>
"defaultCharsetName": "latin1",
"primaryKeyColumnNames": [ // <8>
"primaryKeyColumnNames": [ //<8>
"id"
],
"columns": [ // <9>
"columns": [ //<9>
{
"name": "id",
"jdbcType": 4,