Skip to content

Commit e345d70

Browse files
authored
Fix lint issue on main (#4446)
Automerge ignored the lint check
1 parent 6a5d630 commit e345d70

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

flow/connectors/mysql/qvalue_convert.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -342,11 +342,11 @@ func QValueFromMysqlFieldValue(qkind types.QValueKind, mytype byte, fv mysql.Fie
342342
// `mytype` is the MySQL type for the column
343343
// `meta` is the metadata for the column type: length for fixed length types.
344344
// Reimplementation of MySQL metadata decoding:
345-
// - MySQL 8.4: https://github.com/mysql/mysql-server/blob/845d525d49c8027a4d0cdcc43372c96ba295c857/sql/log_event.cc#L1792-L1805
346-
// - MySQL 5.7: https://github.com/mysql/mysql-server/blob/f7680e98b6bbe3500399fbad465d08a6b75d7a5c/sql/log_event.cc#L2047-L2064
347-
// - MariaDB 10.6:
348-
// https://github.com/MariaDB/server/blob/fcd3f81e08daea471d371d3be051e6feabb06399/sql/rpl_utility_server.cc#L139-L140
349-
// https://github.com/MariaDB/server/blob/fcd3f81e08daea471d371d3be051e6feabb06399/sql/sql_type_string.cc#L70-L73
345+
// - MySQL 8.4: https://github.com/mysql/mysql-server/blob/845d525d49c8027a4d0cdcc43372c96ba295c857/sql/log_event.cc#L1792-L1805
346+
// - MySQL 5.7: https://github.com/mysql/mysql-server/blob/f7680e98b6bbe3500399fbad465d08a6b75d7a5c/sql/log_event.cc#L2047-L2064
347+
// - MariaDB 10.6:
348+
// https://github.com/MariaDB/server/blob/fcd3f81e08daea471d371d3be051e6feabb06399/sql/rpl_utility_server.cc#L139-L140
349+
// https://github.com/MariaDB/server/blob/fcd3f81e08daea471d371d3be051e6feabb06399/sql/sql_type_string.cc#L70-L73
350350
func binaryColumnLength(mytype byte, meta uint16) int {
351351
if mytype != mysql.MYSQL_TYPE_STRING {
352352
return 0

0 commit comments

Comments
 (0)