Skip to content

Commit

Permalink
Fix: data type is lowercase and bin collation
Browse files Browse the repository at this point in the history
  • Loading branch information
fmbiete committed Sep 3, 2024
1 parent eaff81e commit bbdc404
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/innobase/xtrabackup/src/backup_mysql.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1886,7 +1886,7 @@ bool write_xtrabackup_info(MYSQL *connection) {
"WHERE TABLE_SCHEMA = 'PERCONA_SCHEMA' "
"AND TABLE_NAME = 'xtrabackup_history' "
"AND COLUMN_NAME = 'binlog_pos' "
"AND DATA_TYPE = 'TEXT'");
"AND DATA_TYPE = 'text'");

if (strcmp(column_is_changed, "0") == 0) {
// Only alter table if it's required to avoid requesting metadata lock
Expand Down

0 comments on commit bbdc404

Please sign in to comment.