Skip to content

Commit bbdc404

Browse files
committed
Fix: data type is lowercase and bin collation
1 parent eaff81e commit bbdc404

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

storage/innobase/xtrabackup/src/backup_mysql.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1886,7 +1886,7 @@ bool write_xtrabackup_info(MYSQL *connection) {
18861886
"WHERE TABLE_SCHEMA = 'PERCONA_SCHEMA' "
18871887
"AND TABLE_NAME = 'xtrabackup_history' "
18881888
"AND COLUMN_NAME = 'binlog_pos' "
1889-
"AND DATA_TYPE = 'TEXT'");
1889+
"AND DATA_TYPE = 'text'");
18901890

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

0 commit comments

Comments
 (0)