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 : |
#Get deafult engine value --let $DEFAULT_ENGINE = `select @@global.default_storage_engine` # Non-windows specific create tests. --source include/not_windows.inc # # Bug#19479:mysqldump creates invalid dump # --disable_warnings drop table if exists `about:text`; --enable_warnings create table `about:text` ( _id int not null auto_increment, `about:text` varchar(255) not null default '', primary key (_id) ); #Replace default engine value with static engine string --replace_result $DEFAULT_ENGINE ENGINE show create table `about:text`; drop table `about:text`; # End of 5.0 tests # # Bug#16532:mysql server assert in debug if table det is removed # use test; --disable_warnings drop table if exists t1; --enable_warnings create table t1(a int) engine=myisam; insert into t1 values(1); let $MYSQLD_DATADIR= `select @@datadir`; remove_file $MYSQLD_DATADIR/test/t1.frm; --echo "We get an error because the table is in the definition cache" --error ER_TABLE_EXISTS_ERROR create table t1(a int, b int); --echo "Flush the cache and recreate the table anew to be able to drop it" flush tables; show open tables like "t%"; create table t1(a int, b int, c int); --echo "Try to select from the table. This should not crash the server" select count(a) from t1; drop table t1;