Server IP : 104.21.38.3 / Your IP : 104.23.176.8 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/parts/t/ |
Upload File : |
--source include/have_partition.inc --echo # --echo # test using Index Condition Pushdown for partitioned tables --echo # --echo # Test failure of ICP calls -> don't use ICP (MyISAM does not support --echo # ICP on BLOB indexes) CREATE TABLE t1 (a int PRIMARY KEY, b BLOB, c varchar(16) DEFAULT 'Filler...', INDEX (b(4), a)) ENGINE = MyISAM PARTITION BY HASH (a) PARTITIONS 3; SHOW CREATE TABLE t1; INSERT INTO t1 (a, b) VALUES (1, 0xdeadbeef), (2, "text filler"), (3, 'filler...'), (4, " more filler "), (5, "test text"), (6, "testing..."); ANALYZE TABLE t1; let $query= SELECT a, HEX(b) FROM t1 WHERE b >= 'te' and (a % 2); eval EXPLAIN $query; eval EXPLAIN FORMAT=JSON $query; eval $query; --echo Only MyISAM and InnoDB supports both INDEX and BLOBS... ALTER TABLE t1 ENGINE = InnoDB; ANALYZE TABLE t1; eval EXPLAIN $query; eval EXPLAIN FORMAT=JSON $query; eval $query; DROP TABLE t1;