Server IP : 172.67.216.182 / Your IP : 162.158.88.5 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/engines/funcs/r/ |
Upload File : |
stop slave; drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9; reset master; reset slave; drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9; start slave; reset master; show master status; File Position Binlog_Do_DB Binlog_Ignore_DB master-bin.000001 # <Binlog_Do_DB> <Binlog_Ignore_DB> stop slave; reset slave; Master_Host = '127.0.0.1' Master_User = 'root' Master_Log_File = '' Read_Master_Log_Pos = '4' Relay_Master_Log_File = '' Slave_IO_Running = 'No' Slave_SQL_Running = 'No' Replicate_Do_DB = '' Replicate_Ignore_DB = '' Replicate_Do_Table = '' Replicate_Ignore_Table = '' Replicate_Wild_Do_Table = '' Replicate_Wild_Ignore_Table = '' Last_Errno = '0' Last_Error = '' Skip_Counter = '0' Exec_Master_Log_Pos = '0' Until_Condition = 'None' Until_Log_File = '' Until_Log_Pos = '0' Master_SSL_Allowed = 'No' Master_SSL_CA_File = '' Master_SSL_CA_Path = '' Master_SSL_Cert = '' Master_SSL_Cipher = '' Master_SSL_Key = '' Master_SSL_Verify_Server_Cert = 'No' Last_IO_Errno = '0' Last_IO_Error = '' Last_SQL_Errno = '0' Last_SQL_Error = '' Replicate_Ignore_Server_Ids = '' Master_Server_Id = '1' change master to master_host='127.0.0.1'; Master_Host = '127.0.0.1' Master_User = 'root' Master_Log_File = '' Read_Master_Log_Pos = '4' Relay_Master_Log_File = '' Slave_IO_Running = 'No' Slave_SQL_Running = 'No' Replicate_Do_DB = '' Replicate_Ignore_DB = '' Replicate_Do_Table = '' Replicate_Ignore_Table = '' Replicate_Wild_Do_Table = '' Replicate_Wild_Ignore_Table = '' Last_Errno = '0' Last_Error = '' Skip_Counter = '0' Exec_Master_Log_Pos = '0' Until_Condition = 'None' Until_Log_File = '' Until_Log_Pos = '0' Master_SSL_Allowed = 'No' Master_SSL_CA_File = '' Master_SSL_CA_Path = '' Master_SSL_Cert = '' Master_SSL_Cipher = '' Master_SSL_Key = '' Master_SSL_Verify_Server_Cert = 'No' Last_IO_Errno = '0' Last_IO_Error = '' Last_SQL_Errno = '0' Last_SQL_Error = '' Replicate_Ignore_Server_Ids = '' Master_Server_Id = '1' change master to master_host='127.0.0.1',master_user='root', master_password='',master_port=MASTER_PORT; Master_Host = '127.0.0.1' Master_User = 'root' Master_Log_File = '' Read_Master_Log_Pos = '4' Relay_Master_Log_File = '' Slave_IO_Running = 'No' Slave_SQL_Running = 'No' Replicate_Do_DB = '' Replicate_Ignore_DB = '' Replicate_Do_Table = '' Replicate_Ignore_Table = '' Replicate_Wild_Do_Table = '' Replicate_Wild_Ignore_Table = '' Last_Errno = '0' Last_Error = '' Skip_Counter = '0' Exec_Master_Log_Pos = '0' Until_Condition = 'None' Until_Log_File = '' Until_Log_Pos = '0' Master_SSL_Allowed = 'No' Master_SSL_CA_File = '' Master_SSL_CA_Path = '' Master_SSL_Cert = '' Master_SSL_Cipher = '' Master_SSL_Key = '' Master_SSL_Verify_Server_Cert = 'No' Last_IO_Errno = '0' Last_IO_Error = '' Last_SQL_Errno = '0' Last_SQL_Error = '' Replicate_Ignore_Server_Ids = '' Master_Server_Id = '1' start slave; Master_Host = '127.0.0.1' Master_User = 'root' Connect_Retry = '1' Master_Log_File = 'master-bin.000001' Read_Master_Log_Pos = '114' Relay_Master_Log_File = 'master-bin.000001' Relay_Master_Log_File = 'master-bin.000001' Slave_IO_Running = 'Yes' Slave_SQL_Running = 'Yes' Replicate_Do_DB = '' Replicate_Ignore_DB = '' Replicate_Do_Table = '' Replicate_Ignore_Table = '' Replicate_Wild_Do_Table = '' Replicate_Wild_Ignore_Table = '' Last_Errno = '0' Last_Error = '' Skip_Counter = '0' Exec_Master_Log_Pos = '114' Until_Condition = 'None' Until_Log_File = '' Until_Log_Pos = '0' Master_SSL_Allowed = 'No' Master_SSL_CA_File = '' Master_SSL_CA_Path = '' Master_SSL_Cert = '' Master_SSL_Cipher = '' Master_SSL_Key = '' Master_SSL_Verify_Server_Cert = 'No' Last_IO_Errno = '0' Last_IO_Error = '' Last_SQL_Errno = '0' Last_SQL_Error = '' Replicate_Ignore_Server_Ids = '' Master_Server_Id = '1' drop table if exists t1; create table t1 (n int, PRIMARY KEY(n)); insert into t1 values (10),(45),(90); SELECT * FROM t1 ORDER BY n; n 10 n 45 n 90 SELECT * FROM t1 ORDER BY n; n 10 n 45 n 90 drop table t1;