Server IP : 172.67.216.182 / Your IP : 172.69.166.64 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/mysql-test/suite/rpl/t/ |
Upload File : |
# ************************************************************** # wl8307 : Check default_row_format functionality by Replication # case 1 : Check default_row_format=Dynamic on Master & slave # Check with partition table. # Check with Index prefix length greater 767 bytes # Also check same default row_fromat=Dynamic # case 2 : Row_format=compact with index prefix greater than 767 # Bytes should fail on both Master(M) and slave(S) # Also set at the parameter level and check retains same # row_format=compact # case 3 : Set at the Parameter and DDL level different row_format # ************************************************************** --source include/have_innodb.inc --source include/not_group_replication_plugin.inc --source include/master-slave.inc # InnoDB doesn't support only 16k as index prefix is 3070 bytes --source include/have_innodb_16k.inc connection master; USE test; # Create partition table CREATE TABLE tab(empno INT,ename VARCHAR(30),sal NUMERIC(3)) ENGINE=InnoDB PARTITION BY HASH(empno) (PARTITION p0,PARTITION p1 ); # Create Index prefix greater than 767 bytes CREATE TABLE tab1(a INT PRIMARY KEY, b VARCHAR(5000),KEY idx1(b(3070))) ENGINE= InnoDB; # Insert few records INSERT INTO tab VALUES (100,'VISWANATH',100); INSERT INTO tab VALUES (300,'VISWANATH',200); INSERT INTO tab1(a,b) VALUES(1,'Check with max prefix'); # Connect to slave --source include/sync_slave_sql_with_master.inc # Check Dynamic (default) on slave ide SELECT @@innodb_default_row_format; # Check data on slave side SELECT * FROM tab ORDER BY empno; SELECT * FROM tab1 ORDER BY a; # Chek health of the table CHECK TABLE tab; CHECK TABLE tab1; # Check Dynamic (default) on slave --source suite/innodb/include/default_row_format_show.inc # Cleanup connection master; DROP TABLE tab,tab1; # Set Default Row-foramt=Compact SET GLOBAL innodb_default_row_format=Compact; # Create Index prefix greater than 767 bytes -- error ER_INDEX_COLUMN_TOO_LONG CREATE TABLE tab(a INT PRIMARY KEY, b VARCHAR(5000),KEY idx1(b(768))) ENGINE= InnoDB; # Connect to slave --source include/sync_slave_sql_with_master.inc # Check Default is Compact on slave side SELECT @@innodb_default_row_format; # Check table does not exist on slave side --error ER_NO_SUCH_TABLE SHOW CREATE TABLE tab; connection master; # Set Default Row_foramt=Dynamic SET GLOBAL innodb_default_row_format=Dynamic; # Create Index prefix less than 767 bytes CREATE TABLE tab(a INT PRIMARY KEY, b VARCHAR(5000),KEY idx1(b(767))) ENGINE= InnoDB ROW_FORMAT=COMPACT; INSERT INTO tab(a,b) VALUES(1,'Check with max prefix'); ALTER TABLE tab ROW_FORMAT=COMPRESSED; # Check Row_format=Compressed on Master side --source suite/innodb/include/default_row_format_show.inc # Connect to slave --source include/sync_slave_sql_with_master.inc # Check Dynamic (default) on slave side SELECT @@innodb_default_row_format; # Check Row_format=Compressed on slave side --source suite/innodb/include/default_row_format_show.inc # Cleanup connection master; DROP TABLE tab; --source include/rpl_end.inc