⚝
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
/
ndb
/
r
/
View File Name :
ndb_ddl_open_trans.result
create table t1 ( a int ) engine = ndb; begin; insert into t1 values(1); alter table t1 rename t2; commit; drop table t2; set global ndb_dbg_check_shares=1; set global ndb_dbg_check_shares=1; create table t1 ( a int primary key) engine = ndb; begin; insert into t1 values(1); alter table t1 algorithm=inplace, add column b int column_format dynamic; commit; drop table t1; set global ndb_dbg_check_shares=1; set global ndb_dbg_check_shares=1; create table t1 ( a int primary key) engine = ndb; begin; insert into t1 values(1); alter table t1 algorithm=copy, add column b int column_format dynamic; ERROR HY000: Lock wait timeout exceeded; try restarting transaction commit; drop table t1; set global ndb_dbg_check_shares=1; set global ndb_dbg_check_shares=1; create table t1 ( a int primary key, b int) engine = ndb; begin; insert into t1 values(1, 1); create index ind_b on t1(b) algorithm=inplace; commit; drop table t1; set global ndb_dbg_check_shares=1; set global ndb_dbg_check_shares=1; create table t1 ( a int primary key, b int, index ind_b (b)) engine = ndb; begin; insert into t1 values(1, 1); drop index ind_b on t1; commit; drop table t1; set global ndb_dbg_check_shares=1; set global ndb_dbg_check_shares=1; create database testdb; create table testdb.t1 (a int) engine = ndb; begin; insert into testdb.t1 values(1); alter database testdb charset = latin1; commit; drop database testdb; set global ndb_dbg_check_shares=1; set global ndb_dbg_check_shares=1;