Server IP : 104.21.38.3 / Your IP : 162.158.88.87 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/innodb_fts/include/ |
Upload File : |
--let MYSQLD_DATADIR=`SELECT @@datadir` SET DEBUG = '+d,ib_fts_aux_table_error'; --error 1030 --eval CREATE TABLE t1(a TEXT, b TEXT, c TEXT, d TEXT, FULLTEXT idx(a,b), FULLTEXT idx2(c,d)) $EXTRA_PARAMS SET DEBUG = '-d,ib_fts_aux_table_error'; --source suite/innodb/include/show_i_s_tables.inc --echo # list files in datadir/test --list_files $MYSQLD_DATADIR/test SET DEBUG = '+d,ib_fts_index_table_error'; --error 1030 --eval CREATE TABLE t1(a TEXT, b TEXT, c TEXT, d TEXT, FULLTEXT idx(a,b), FULLTEXT idx2(c,d)) $EXTRA_PARAMS SET DEBUG = '-d,ib_fts_index_table_error'; --source suite/innodb/include/show_i_s_tables.inc --echo # list files in datadir/test --list_files $MYSQLD_DATADIR/test --eval CREATE TABLE t1 (id INT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY, title VARCHAR(200)) ENGINE=InnoDB $EXTRA_PARAMS --source suite/innodb/include/show_i_s_tables.inc --echo # list files in datadir/test --list_files $MYSQLD_DATADIR/test SET DEBUG = '+d,ib_fts_aux_table_error'; --error 1030 ALTER TABLE t1 ADD FULLTEXT INDEX (title); SET DEBUG = '-d,ib_fts_aux_table_error'; --source suite/innodb/include/show_i_s_tables.inc --echo # list files in datadir/test --let $regexp=/FTS_([0-9a-f_]+)([A-Z0-9_]+)\.i/FTS_AUX_\2.i/ --replace_regex $regexp --list_files $MYSQLD_DATADIR/test SET DEBUG = '+d,ib_fts_index_table_error'; --error 1030 ALTER TABLE t1 ADD FULLTEXT INDEX (title); SET DEBUG = '-d,ib_fts_index_table_error'; --source suite/innodb/include/show_i_s_tables.inc --echo # list files in datadir/test --replace_regex $regexp --list_files $MYSQLD_DATADIR/test DROP TABLE t1; --eval CREATE TABLE t1 (a VARCHAR(200), b TEXT, FULLTEXT fts_idx(a,b), c INT PRIMARY KEY) $EXTRA_PARAMS INSERT INTO t1 VALUES ('MySQL Tutorial','DBMS stands for DataBase', 1) , ('How To Use MySQL Well','After you went through a', 2), ('Optimizing MySQL','In this tutorial we will show', 3); INSERT INTO t1 VALUES ('1001 MySQL Tricks','1. Never run mysqld as root', 4), ('MySQL vs. YourSQL','In the following database comparison', 5), ('MySQL Security','When configured properly, MySQL', 6); SELECT c FROM t1 WHERE MATCH (a,b) AGAINST ('Tutorial' IN NATURAL LANGUAGE MODE); --source suite/innodb/include/show_i_s_tables.inc --echo # list files in datadir/test --replace_regex $regexp --list_files $MYSQLD_DATADIR/test SET DEBUG = '+d,ib_fts_aux_table_error'; --error 1030 ALTER TABLE t1 ADD COLUMN pk INT NOT NULL AUTO_INCREMENT, DROP PRIMARY KEY, ADD PRIMARY KEY(pk), ALGORITHM=copy; SET DEBUG = '-d,ib_fts_aux_table_error'; --source suite/innodb/include/show_i_s_tables.inc --echo # list files in datadir/test --replace_regex $regexp --list_files $MYSQLD_DATADIR/test SET DEBUG = '+d,ib_fts_index_table_error'; --error 1030 ALTER TABLE t1 ADD COLUMN pk INT NOT NULL AUTO_INCREMENT, DROP PRIMARY KEY, ADD PRIMARY KEY(pk), ALGORITHM=copy; SET DEBUG = '-d,ib_fts_index_table_error'; --source suite/innodb/include/show_i_s_tables.inc --echo # list files in datadir/test --replace_regex $regexp --list_files $MYSQLD_DATADIR/test SET DEBUG = '+d,ib_fts_aux_table_error'; ALTER TABLE t1 DROP INDEX fts_idx, ADD FULLTEXT INDEX fts_idx(a,b); SET DEBUG = '-d,ib_fts_aux_table_error'; --source suite/innodb/include/show_i_s_tables.inc --echo # list files in datadir/test --replace_regex $regexp --list_files $MYSQLD_DATADIR/test SET DEBUG = '+d,ib_fts_index_table_error'; --error 1030 ALTER TABLE t1 DROP INDEX fts_idx, ADD FULLTEXT INDEX fts_idx(a); SET DEBUG = '-d,ib_fts_index_table_error'; --source suite/innodb/include/show_i_s_tables.inc --echo # list files in datadir/test --replace_regex $regexp --list_files $MYSQLD_DATADIR/test DROP TABLE t1;