sandynz commented on PR #24426:
URL: https://github.com/apache/shardingsphere/pull/24426#issuecomment-1463055063
In `MySQLBinlogProtocolValueFactory`:
```
private static void registerStringTypeValue() {
BINLOG_PROTOCOL_VALUES.put(MySQLBinaryColumnType.MYSQL_TYPE_STRING,
new MySQLStringBinlogProtocolValue());
BINLOG_PROTOCOL_VALUES.put(MySQLBinaryColumnType.MYSQL_TYPE_VARCHAR,
new MySQLVarcharBinlogProtocolValue());
BINLOG_PROTOCOL_VALUES.put(MySQLBinaryColumnType.MYSQL_TYPE_VAR_STRING, new
MySQLVarcharBinlogProtocolValue());
BINLOG_PROTOCOL_VALUES.put(MySQLBinaryColumnType.MySQL_TYPE_JSON,
new MySQLJsonBinlogProtocolValue());
}
```
`MySQLStringBinlogProtocolValue` is not updated this time, BINARY column
will be handled as MYSQL_TYPE_STRING in TableMap columnDef.
It's already updated in master branch by #24485.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]