⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.124
Server IP:
50.28.103.30
Server:
Linux host.jcukjv-lwsites.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
Server Software:
nginx/1.28.0
PHP Version:
8.3.12
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
www
/
server
/
mysql
/
mysql-test
/
suite
/
innodb
/
r
/
View File Name :
innodb_wl6469_debug.result
set global innodb_file_per_table = 0; set global innodb_file_per_table = 1; call mtr.add_suppression("No space left on device"); call mtr.add_suppression("table.+ full"); call mtr.add_suppression("Cannot create file"); call mtr.add_suppression("\\[ERROR\\] InnoDB: table .* does not exist " "in the InnoDB internal"); set session debug="+d,ib_ddl_crash_during_tablespace_alloc"; create temporary table t1 (a int, b int, primary key(a), index(b)) engine = innodb; ERROR HY000: Lost connection to MySQL server during query create temporary table t1 (a int, b int, primary key(a), index(b)) engine = innodb; insert into t1 values (10, 11); select * from t1; a b 10 11 drop table t1; set session debug="+d,ib_create_table_fail_at_create_index"; create temporary table t1 (a int, b int, primary key(a), index(b)) engine = innodb; ERROR HY000: Index column size too large. The maximum column size is 3072 bytes. insert into t1 values (10, 11); ERROR 42S02: Table 'test.t1' doesn't exist set session debug="-d,ib_create_table_fail_at_create_index"; create temporary table t1 (a int, b int, primary key(a), index(b)) engine = innodb; insert into t1 values (10, 11); drop table t1; drop table if exists parent,child; create temporary table parent ( i int primary key ) engine = innodb; create table child ( j int references parent(i)) engine = innodb; insert into parent values (1),(2),(3),(4); insert into child values (1),(2),(3),(4); insert into child values (5),(6); select * from parent; i 1 2 3 4 select * from child; j 1 2 3 4 5 6 # restart select * from parent ; ERROR 42S02: Table 'test.parent' doesn't exist select * from child ; j 1 2 3 4 5 6 drop table child;