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 /
access /
Delete
Unzip
Name
Size
Permission
Date
Action
attnum.h
1.52
KB
-rw-r--r--
2021-06-15 13:00
clog.h
1.47
KB
-rw-r--r--
2021-06-15 13:00
genam.h
7.3
KB
-rw-r--r--
2021-06-15 13:00
gin.h
1.63
KB
-rw-r--r--
2021-06-15 13:00
gin_private.h
22.87
KB
-rw-r--r--
2021-06-15 13:00
gist.h
6.65
KB
-rw-r--r--
2021-06-15 13:00
gist_private.h
19.09
KB
-rw-r--r--
2021-06-15 13:00
gistscan.h
718
B
-rw-r--r--
2021-06-15 13:00
hash.h
12.87
KB
-rw-r--r--
2021-06-15 13:00
heapam.h
6.25
KB
-rw-r--r--
2021-06-15 13:00
hio.h
1.25
KB
-rw-r--r--
2021-06-15 13:00
htup.h
32.13
KB
-rw-r--r--
2021-06-15 13:00
itup.h
4.3
KB
-rw-r--r--
2021-06-15 13:00
multixact.h
2.83
KB
-rw-r--r--
2021-06-15 13:00
nbtree.h
27.43
KB
-rw-r--r--
2021-06-15 13:00
printtup.h
1.03
KB
-rw-r--r--
2021-06-15 13:00
reloptions.h
8.61
KB
-rw-r--r--
2021-06-15 13:00
relscan.h
4.07
KB
-rw-r--r--
2021-06-15 13:00
rewriteheap.h
1016
B
-rw-r--r--
2021-06-15 13:00
rmgr.h
804
B
-rw-r--r--
2021-06-15 13:00
sdir.h
1.43
KB
-rw-r--r--
2021-06-15 13:00
skey.h
6.87
KB
-rw-r--r--
2021-06-15 13:00
slru.h
5.16
KB
-rw-r--r--
2021-06-15 13:00
spgist.h
6.24
KB
-rw-r--r--
2021-06-15 13:00
spgist_private.h
22.11
KB
-rw-r--r--
2021-06-15 13:00
subtrans.h
973
B
-rw-r--r--
2021-06-15 13:00
sysattr.h
891
B
-rw-r--r--
2021-06-15 13:00
transam.h
6.02
KB
-rw-r--r--
2021-06-15 13:00
tupconvert.h
1.26
KB
-rw-r--r--
2021-06-15 13:00
tupdesc.h
4.25
KB
-rw-r--r--
2021-06-15 13:00
tupmacs.h
7.16
KB
-rw-r--r--
2021-06-15 13:00
tuptoaster.h
5.52
KB
-rw-r--r--
2021-06-15 13:00
twophase.h
1.75
KB
-rw-r--r--
2021-06-15 13:00
twophase_rmgr.h
1.24
KB
-rw-r--r--
2021-06-15 13:00
valid.h
1.4
KB
-rw-r--r--
2021-06-15 13:00
visibilitymap.h
1.15
KB
-rw-r--r--
2021-06-15 13:00
xact.h
8.44
KB
-rw-r--r--
2021-06-15 13:00
xlog.h
12.43
KB
-rw-r--r--
2021-06-15 13:00
xlog_internal.h
9.34
KB
-rw-r--r--
2021-06-15 13:00
xlogdefs.h
4.49
KB
-rw-r--r--
2021-06-15 13:00
xlogutils.h
956
B
-rw-r--r--
2021-06-15 13:00
Save
Rename
/*------------------------------------------------------------------------- * * genam.h * POSTGRES generalized index access method definitions. * * * Portions Copyright (c) 1996-2012, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * src/include/access/genam.h * *------------------------------------------------------------------------- */ #ifndef GENAM_H #define GENAM_H #include "access/sdir.h" #include "access/skey.h" #include "nodes/tidbitmap.h" #include "storage/lock.h" #include "utils/relcache.h" #include "utils/snapshot.h" /* * Struct for statistics returned by ambuild */ typedef struct IndexBuildResult { double heap_tuples; /* # of tuples seen in parent table */ double index_tuples; /* # of tuples inserted into index */ } IndexBuildResult; /* * Struct for input arguments passed to ambulkdelete and amvacuumcleanup * * num_heap_tuples is accurate only when estimated_count is false; * otherwise it's just an estimate (currently, the estimate is the * prior value of the relation's pg_class.reltuples field). It will * always just be an estimate during ambulkdelete. */ typedef struct IndexVacuumInfo { Relation index; /* the index being vacuumed */ bool analyze_only; /* ANALYZE (without any actual vacuum) */ bool estimated_count; /* num_heap_tuples is an estimate */ int message_level; /* ereport level for progress messages */ double num_heap_tuples; /* tuples remaining in heap */ BufferAccessStrategy strategy; /* access strategy for reads */ } IndexVacuumInfo; /* * Struct for statistics returned by ambulkdelete and amvacuumcleanup * * This struct is normally allocated by the first ambulkdelete call and then * passed along through subsequent ones until amvacuumcleanup; however, * amvacuumcleanup must be prepared to allocate it in the case where no * ambulkdelete calls were made (because no tuples needed deletion). * Note that an index AM could choose to return a larger struct * of which this is just the first field; this provides a way for ambulkdelete * to communicate additional private data to amvacuumcleanup. * * Note: pages_removed is the amount by which the index physically shrank, * if any (ie the change in its total size on disk). pages_deleted and * pages_free refer to free space within the index file. Some index AMs * may compute num_index_tuples by reference to num_heap_tuples, in which * case they should copy the estimated_count field from IndexVacuumInfo. */ typedef struct IndexBulkDeleteResult { BlockNumber num_pages; /* pages remaining in index */ BlockNumber pages_removed; /* # removed during vacuum operation */ bool estimated_count; /* num_index_tuples is an estimate */ double num_index_tuples; /* tuples remaining */ double tuples_removed; /* # removed during vacuum operation */ BlockNumber pages_deleted; /* # unused pages in index */ BlockNumber pages_free; /* # pages available for reuse */ } IndexBulkDeleteResult; /* Typedef for callback function to determine if a tuple is bulk-deletable */ typedef bool (*IndexBulkDeleteCallback) (ItemPointer itemptr, void *state); /* struct definitions appear in relscan.h */ typedef struct IndexScanDescData *IndexScanDesc; typedef struct SysScanDescData *SysScanDesc; /* * Enumeration specifying the type of uniqueness check to perform in * index_insert(). * * UNIQUE_CHECK_YES is the traditional Postgres immediate check, possibly * blocking to see if a conflicting transaction commits. * * For deferrable unique constraints, UNIQUE_CHECK_PARTIAL is specified at * insertion time. The index AM should test if the tuple is unique, but * should not throw error, block, or prevent the insertion if the tuple * appears not to be unique. We'll recheck later when it is time for the * constraint to be enforced. The AM must return true if the tuple is * known unique, false if it is possibly non-unique. In the "true" case * it is safe to omit the later recheck. * * When it is time to recheck the deferred constraint, a pseudo-insertion * call is made with UNIQUE_CHECK_EXISTING. The tuple is already in the * index in this case, so it should not be inserted again. Rather, just * check for conflicting live tuples (possibly blocking). */ typedef enum IndexUniqueCheck { UNIQUE_CHECK_NO, /* Don't do any uniqueness checking */ UNIQUE_CHECK_YES, /* Enforce uniqueness at insertion time */ UNIQUE_CHECK_PARTIAL, /* Test uniqueness, but no error */ UNIQUE_CHECK_EXISTING /* Check if existing tuple is unique */ } IndexUniqueCheck; /* * generalized index_ interface routines (in indexam.c) */ /* * IndexScanIsValid * True iff the index scan is valid. */ #define IndexScanIsValid(scan) PointerIsValid(scan) extern Relation index_open(Oid relationId, LOCKMODE lockmode); extern void index_close(Relation relation, LOCKMODE lockmode); extern bool index_insert(Relation indexRelation, Datum *values, bool *isnull, ItemPointer heap_t_ctid, Relation heapRelation, IndexUniqueCheck checkUnique); extern IndexScanDesc index_beginscan(Relation heapRelation, Relation indexRelation, Snapshot snapshot, int nkeys, int norderbys); extern IndexScanDesc index_beginscan_bitmap(Relation indexRelation, Snapshot snapshot, int nkeys); extern void index_rescan(IndexScanDesc scan, ScanKey keys, int nkeys, ScanKey orderbys, int norderbys); extern void index_endscan(IndexScanDesc scan); extern void index_markpos(IndexScanDesc scan); extern void index_restrpos(IndexScanDesc scan); extern ItemPointer index_getnext_tid(IndexScanDesc scan, ScanDirection direction); extern HeapTuple index_fetch_heap(IndexScanDesc scan); extern HeapTuple index_getnext(IndexScanDesc scan, ScanDirection direction); extern int64 index_getbitmap(IndexScanDesc scan, TIDBitmap *bitmap); extern IndexBulkDeleteResult *index_bulk_delete(IndexVacuumInfo *info, IndexBulkDeleteResult *stats, IndexBulkDeleteCallback callback, void *callback_state); extern IndexBulkDeleteResult *index_vacuum_cleanup(IndexVacuumInfo *info, IndexBulkDeleteResult *stats); extern bool index_can_return(Relation indexRelation); extern RegProcedure index_getprocid(Relation irel, AttrNumber attnum, uint16 procnum); extern FmgrInfo *index_getprocinfo(Relation irel, AttrNumber attnum, uint16 procnum); /* * index access method support routines (in genam.c) */ extern IndexScanDesc RelationGetIndexScan(Relation indexRelation, int nkeys, int norderbys); extern void IndexScanEnd(IndexScanDesc scan); extern char *BuildIndexValueDescription(Relation indexRelation, Datum *values, bool *isnull); /* * heap-or-index access to system catalogs (in genam.c) */ extern SysScanDesc systable_beginscan(Relation heapRelation, Oid indexId, bool indexOK, Snapshot snapshot, int nkeys, ScanKey key); extern HeapTuple systable_getnext(SysScanDesc sysscan); extern bool systable_recheck_tuple(SysScanDesc sysscan, HeapTuple tup); extern void systable_endscan(SysScanDesc sysscan); extern SysScanDesc systable_beginscan_ordered(Relation heapRelation, Relation indexRelation, Snapshot snapshot, int nkeys, ScanKey key); extern HeapTuple systable_getnext_ordered(SysScanDesc sysscan, ScanDirection direction); extern void systable_endscan_ordered(SysScanDesc sysscan); #endif /* GENAM_H */