Server IP : 104.21.38.3 / Your IP : 162.158.107.66 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/binlog/t/ |
Upload File : |
# Test grants for various objects (especially variables) related to # the binary log source include/have_log_bin.inc; connection default; --disable_warnings reset master; --enable_warnings set @saved_binlog_format = @@global.binlog_format; create user mysqltest_1@localhost; show grants for mysqltest_1@localhost; connect (plain,localhost,mysqltest_1,,test); connect (root,localhost,root,,test); # Testing setting session SQL_LOG_BIN variable both as # root and as plain user. --echo **** Variable SQL_LOG_BIN **** connection root; --echo [root] set session sql_log_bin = 1; connection plain; --echo [plain] --error ER_SPECIFIC_ACCESS_DENIED_ERROR set session sql_log_bin = 1; # Testing setting both session and global BINLOG_FORMAT variable both # as root and as plain user. --echo **** Variable BINLOG_FORMAT **** connection root; --echo [root] set global binlog_format = row; set session binlog_format = row; connection plain; --echo [plain] --error ER_SPECIFIC_ACCESS_DENIED_ERROR set global binlog_format = row; --error ER_SPECIFIC_ACCESS_DENIED_ERROR set session binlog_format = row; --echo **** Clean up **** disconnect plain; disconnect root; connection default; set global binlog_format = @saved_binlog_format; drop user mysqltest_1@localhost; # Testing if REPLICATION CLIENT privilege is enough to execute # SHOW MASTER LOGS and SHOW BINARY. set @orig_sql_mode= @@sql_mode; set sql_mode= (select replace(@@sql_mode,'NO_AUTO_CREATE_USER','')); GRANT REPLICATION CLIENT ON *.* TO 'mysqltest_1'@'localhost'; set sql_mode= @orig_sql_mode; --connect(rpl,localhost,mysqltest_1,,) --connection rpl # We are only interested if the following commands succeed and not on # their output. --disable_result_log SHOW MASTER LOGS; SHOW BINARY LOGS; --enable_result_log # clean up --disconnect rpl connection default; DROP USER 'mysqltest_1'@'localhost';