| Server IP : 88.99.149.37 / Your IP : 216.73.216.141 Web Server : nginx/1.31.2 System : Linux server-88-99-149-37 6.12.0-124.56.5.el10_1.x86_64 #1 SMP PREEMPT_DYNAMIC Fri May 15 06:12:08 EDT 2026 x86_64 User : muralimurth ( 1015) PHP Version : 8.4.23 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/local/mysql/mysql-test/suite/mariabackup/ |
Upload File : |
# xtrabackup backup CREATE TABLE t1(i int) ENGINE=InnoDB; INSERT into t1 values(1); connect con2, localhost, root,,; connection con2; set lock_wait_timeout=1; SET debug_sync='copy_data_between_tables_before_reset_backup_lock SIGNAL go WAIT_FOR after_backup_stage_block_ddl'; SET debug_sync='alter_table_after_temp_table_drop SIGNAL temp_table_dropped'; SET debug_sync='now WAIT_FOR after_backup_stage_start';ALTER TABLE test.t1 FORCE, algorithm=COPY;| connection default; connection con2; ERROR HY000: Lock wait timeout exceeded; try restarting transaction SET debug_sync='RESET'; disconnect con2; connection default; # xtrabackup prepare # shutdown server # remove datadir # xtrabackup move back # restart SELECT * FROM t1; i 1 DROP TABLE t1; # # MDEV-38041 MariaBackup fails during rollback of # inplace FTS alter table # CREATE TABLE t1(f1 int, f2 char(100), fulltext(f2)) ENGINE=InnoDB; INSERT into t1 values(1, "MariaDB"), (1, "MySQL"); connect con2, localhost, root,,; set lock_wait_timeout=1; SET debug_sync='copy_data_between_tables_before_reset_backup_lock SIGNAL go WAIT_FOR after_backup_stage_block_ddl'; SET debug_sync='alter_table_after_temp_table_drop SIGNAL temp_table_dropped'; SET debug_sync='now WAIT_FOR after_backup_stage_start';ALTER TABLE test.t1 ADD PRIMARY KEY(f1), algorithm=COPY;| connection default; connection con2; ERROR 23000: Duplicate entry '1' for key 'PRIMARY' SET debug_sync='RESET'; disconnect con2; connection default; DROP TABLE t1;