⚝
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
/
include
/
View File Name :
ndb_check_unique_index.inc
# # ndb_check_unique_index.inc - check that all unique index use same fragment count as main table # # Usage: # let ndb_database= <table database>; # let ndb_table= <table name>; # --source suite/ndb/include/ndb_check_unique_index.inc # --perl use strict; my $db = $ENV{ndb_database} or die "Missing ndb_database in environment\n"; my $tbl = $ENV{ndb_table} or die "Missing ndb_table in environment\n"; my $cmd = "$ENV{NDB_DESC} -d$db $tbl"; my $fragcnt; my %idxfragcnts; open MAIN, "$cmd|"; print "Table: $db.$tbl\n"; while (<MAIN>) { if (/FragmentCount: (\S+).*/) { # print previous tables indices fragment counts foreach my $i (sort keys %idxfragcnts) { print $i; print $idxfragcnts{$i}; } # clear current tables indices fragment counts %idxfragcnts = undef; # print current tables fragment count print; $fragcnt = $1; } if (/([^(]+unique)\S+ - UniqueHashIndex.*/) { my $row = $_; $idxfragcnts{$row} = ''; my $index = $1; open IDX, "$ENV{NDB_DESC} -d$db -t$tbl $index|" or die "FAILED: $ENV{NDB_DESC} -d$db -t$tbl $index|"; while (<IDX>) { if (/FragmentCount: (\S+).*/) { $idxfragcnts{$row} = $_; } } close IDX; } } # print last tables indices fragment counts foreach my $i (sort keys %idxfragcnts) { print $i; print $idxfragcnts{$i}; } close MAIN; EOF let ndb_database=; let ndb_table=;