Server IP : 185.86.78.101 / Your IP : 216.73.216.124 Web Server : Apache System : Linux 675867-vds-valikoshka1996.gmhost.pp.ua 5.4.0-150-generic #167-Ubuntu SMP Mon May 15 17:35:05 UTC 2023 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 : OFF Directory : /www/server/mysql/mysql-test/t/ |
Upload File : |
--source include/not_embedded.inc ########################################################################### --echo # --echo # Bug#39559: dump of stored procedures / functions with C-style --echo # comment can't be read back --echo # --write_file $MYSQLTEST_VARDIR/tmp/bug39559.sql select 2 as expected, /*!01000/**/*/ 2 as result; select 1 as expected, /*!99998/**/*/ 1 as result; select 3 as expected, /*!01000 1 + */ 2 as result; select 2 as expected, /*!99990 1 + */ 2 as result; select 7 as expected, /*!01000 1 + /* 8 + */ 2 + */ 4 as result; select 8 as expected, /*!99998 1 + /* 2 + */ 4 + */ 8 as result; select 7 as expected, /*!01000 1 + /*!01000 8 + */ 2 + */ 4 as result; select 7 as expected, /*!01000 1 + /*!99998 8 + */ 2 + */ 4 as result; select 4 as expected, /*!99998 1 + /*!99998 8 + */ 2 + */ 4 as result; select 4 as expected, /*!99998 1 + /*!01000 8 + */ 2 + */ 4 as result; select 7 as expected, /*!01000 1 + /*!01000 8 + /*!01000 error */ 16 + */ 2 + */ 4 as result; select 4 as expected, /* 1 + /*!01000 8 + */ 2 + */ 4; EOF --exec $MYSQL --comments --force --table test <$MYSQLTEST_VARDIR/tmp/bug39559.sql --remove_file $MYSQLTEST_VARDIR/tmp/bug39559.sql --echo # Bug#46527 "COMMIT AND CHAIN RELEASE does not make sense" --echo # --error ER_PARSE_ERROR COMMIT AND CHAIN RELEASE; COMMIT AND NO CHAIN RELEASE; disconnect default; connect(default, localhost, root,,); COMMIT RELEASE; disconnect default; connect(default, localhost, root,,); --error ER_PARSE_ERROR COMMIT CHAIN RELEASE; --error ER_PARSE_ERROR COMMIT NO CHAIN RELEASE; --error ER_PARSE_ERROR COMMIT AND NO RELEASE; --error ER_PARSE_ERROR COMMIT AND RELEASE; COMMIT NO RELEASE; --error ER_PARSE_ERROR COMMIT CHAIN NO RELEASE; --error ER_PARSE_ERROR COMMIT NO CHAIN NO RELEASE; --error ER_PARSE_ERROR COMMIT AND RELEASE CHAIN; COMMIT AND NO CHAIN NO RELEASE; --error ER_PARSE_ERROR ROLLBACK AND CHAIN RELEASE; ROLLBACK AND NO CHAIN RELEASE; disconnect default; connect(default, localhost, root,,); ROLLBACK RELEASE; disconnect default; connect(default, localhost, root,,); --error ER_PARSE_ERROR ROLLBACK CHAIN RELEASE; --error ER_PARSE_ERROR ROLLBACK NO CHAIN RELEASE; disconnect default; connect(default, localhost, root,,); --error ER_PARSE_ERROR ROLLBACK AND NO RELEASE; --error ER_PARSE_ERROR ROLLBACK AND RELEASE; ROLLBACK NO RELEASE; --error ER_PARSE_ERROR ROLLBACK CHAIN NO RELEASE; --error ER_PARSE_ERROR ROLLBACK NO CHAIN NO RELEASE; --error ER_PARSE_ERROR ROLLBACK AND RELEASE CHAIN; ROLLBACK AND NO CHAIN NO RELEASE; --echo # --echo # End of 5.5 tests --echo #