Linux worldls-302.fr.planethoster.net 4.18.0-553.8.1.lve.el7h.x86_64 #1 SMP Thu Jul 4 15:19:33 UTC 2024 x86_64
LiteSpeed
Server IP : 10.185.0.203 & Your IP : 216.73.216.32
Domains :
Cant Read [ /etc/named.conf ]
User : gerathty
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--
2023-12-20 12:58
clog.h
1.47
KB
-rw-r--r--
2023-12-20 12:58
genam.h
7.3
KB
-rw-r--r--
2023-12-20 12:58
gin.h
1.63
KB
-rw-r--r--
2023-12-20 12:58
gin_private.h
22.87
KB
-rw-r--r--
2023-12-20 12:58
gist.h
6.65
KB
-rw-r--r--
2023-12-20 12:58
gist_private.h
19.09
KB
-rw-r--r--
2023-12-20 12:58
gistscan.h
718
B
-rw-r--r--
2023-12-20 12:58
hash.h
12.87
KB
-rw-r--r--
2023-12-20 12:58
heapam.h
6.25
KB
-rw-r--r--
2023-12-20 12:58
hio.h
1.25
KB
-rw-r--r--
2023-12-20 12:58
htup.h
32.13
KB
-rw-r--r--
2023-12-20 12:58
itup.h
4.3
KB
-rw-r--r--
2023-12-20 12:58
multixact.h
2.83
KB
-rw-r--r--
2023-12-20 12:58
nbtree.h
27.43
KB
-rw-r--r--
2023-12-20 12:58
printtup.h
1.03
KB
-rw-r--r--
2023-12-20 12:58
reloptions.h
8.61
KB
-rw-r--r--
2023-12-20 12:58
relscan.h
4.07
KB
-rw-r--r--
2023-12-20 12:58
rewriteheap.h
1016
B
-rw-r--r--
2023-12-20 12:58
rmgr.h
804
B
-rw-r--r--
2023-12-20 12:58
sdir.h
1.43
KB
-rw-r--r--
2023-12-20 12:58
skey.h
6.87
KB
-rw-r--r--
2023-12-20 12:58
slru.h
5.16
KB
-rw-r--r--
2023-12-20 12:58
spgist.h
6.24
KB
-rw-r--r--
2023-12-20 12:58
spgist_private.h
22.11
KB
-rw-r--r--
2023-12-20 12:58
subtrans.h
973
B
-rw-r--r--
2023-12-20 12:58
sysattr.h
891
B
-rw-r--r--
2023-12-20 12:58
transam.h
6.02
KB
-rw-r--r--
2023-12-20 12:58
tupconvert.h
1.26
KB
-rw-r--r--
2023-12-20 12:58
tupdesc.h
4.25
KB
-rw-r--r--
2023-12-20 12:58
tupmacs.h
7.16
KB
-rw-r--r--
2023-12-20 12:58
tuptoaster.h
5.52
KB
-rw-r--r--
2023-12-20 12:58
twophase.h
1.75
KB
-rw-r--r--
2023-12-20 12:58
twophase_rmgr.h
1.24
KB
-rw-r--r--
2023-12-20 12:58
valid.h
1.4
KB
-rw-r--r--
2023-12-20 12:58
visibilitymap.h
1.15
KB
-rw-r--r--
2023-12-20 12:58
xact.h
8.44
KB
-rw-r--r--
2023-12-20 12:58
xlog.h
12.43
KB
-rw-r--r--
2023-12-20 12:58
xlog_internal.h
9.34
KB
-rw-r--r--
2023-12-20 12:58
xlogdefs.h
4.49
KB
-rw-r--r--
2023-12-20 12:58
xlogutils.h
956
B
-rw-r--r--
2023-12-20 12:58
Save
Rename
/*------------------------------------------------------------------------- * * itup.h * POSTGRES index tuple definitions. * * * Portions Copyright (c) 1996-2012, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * src/include/access/itup.h * *------------------------------------------------------------------------- */ #ifndef ITUP_H #define ITUP_H #include "access/tupdesc.h" #include "access/tupmacs.h" #include "storage/bufpage.h" #include "storage/itemptr.h" /* * Index tuple header structure * * All index tuples start with IndexTupleData. If the HasNulls bit is set, * this is followed by an IndexAttributeBitMapData. The index attribute * values follow, beginning at a MAXALIGN boundary. * * Note that the space allocated for the bitmap does not vary with the number * of attributes; that is because we don't have room to store the number of * attributes in the header. Given the MAXALIGN constraint there's no space * savings to be had anyway, for usual values of INDEX_MAX_KEYS. */ typedef struct IndexTupleData { ItemPointerData t_tid; /* reference TID to heap tuple */ /* --------------- * t_info is laid out in the following fashion: * * 15th (high) bit: has nulls * 14th bit: has var-width attributes * 13th bit: unused * 12-0 bit: size of tuple * --------------- */ unsigned short t_info; /* various info about tuple */ } IndexTupleData; /* MORE DATA FOLLOWS AT END OF STRUCT */ typedef IndexTupleData *IndexTuple; typedef struct IndexAttributeBitMapData { bits8 bits[(INDEX_MAX_KEYS + 8 - 1) / 8]; } IndexAttributeBitMapData; typedef IndexAttributeBitMapData *IndexAttributeBitMap; /* * t_info manipulation macros */ #define INDEX_SIZE_MASK 0x1FFF /* bit 0x2000 is not used at present */ #define INDEX_VAR_MASK 0x4000 #define INDEX_NULL_MASK 0x8000 #define IndexTupleSize(itup) ((Size) (((IndexTuple) (itup))->t_info & INDEX_SIZE_MASK)) #define IndexTupleDSize(itup) ((Size) ((itup).t_info & INDEX_SIZE_MASK)) #define IndexTupleHasNulls(itup) ((((IndexTuple) (itup))->t_info & INDEX_NULL_MASK)) #define IndexTupleHasVarwidths(itup) ((((IndexTuple) (itup))->t_info & INDEX_VAR_MASK)) /* * Takes an infomask as argument (primarily because this needs to be usable * at index_form_tuple time so enough space is allocated). */ #define IndexInfoFindDataOffset(t_info) \ ( \ (!((t_info) & INDEX_NULL_MASK)) ? \ ( \ (Size)MAXALIGN(sizeof(IndexTupleData)) \ ) \ : \ ( \ (Size)MAXALIGN(sizeof(IndexTupleData) + sizeof(IndexAttributeBitMapData)) \ ) \ ) /* ---------------- * index_getattr * * This gets called many times, so we macro the cacheable and NULL * lookups, and call nocache_index_getattr() for the rest. * * ---------------- */ #define index_getattr(tup, attnum, tupleDesc, isnull) \ ( \ AssertMacro(PointerIsValid(isnull) && (attnum) > 0), \ *(isnull) = false, \ !IndexTupleHasNulls(tup) ? \ ( \ (tupleDesc)->attrs[(attnum)-1]->attcacheoff >= 0 ? \ ( \ fetchatt((tupleDesc)->attrs[(attnum)-1], \ (char *) (tup) + IndexInfoFindDataOffset((tup)->t_info) \ + (tupleDesc)->attrs[(attnum)-1]->attcacheoff) \ ) \ : \ nocache_index_getattr((tup), (attnum), (tupleDesc)) \ ) \ : \ ( \ (att_isnull((attnum)-1, (char *)(tup) + sizeof(IndexTupleData))) ? \ ( \ *(isnull) = true, \ (Datum)NULL \ ) \ : \ ( \ nocache_index_getattr((tup), (attnum), (tupleDesc)) \ ) \ ) \ ) /* * MaxIndexTuplesPerPage is an upper bound on the number of tuples that can * fit on one index page. An index tuple must have either data or a null * bitmap, so we can safely assume it's at least 1 byte bigger than a bare * IndexTupleData struct. We arrive at the divisor because each tuple * must be maxaligned, and it must have an associated item pointer. */ #define MaxIndexTuplesPerPage \ ((int) ((BLCKSZ - SizeOfPageHeaderData) / \ (MAXALIGN(sizeof(IndexTupleData) + 1) + sizeof(ItemIdData)))) /* routines in indextuple.c */ extern IndexTuple index_form_tuple(TupleDesc tupleDescriptor, Datum *values, bool *isnull); extern Datum nocache_index_getattr(IndexTuple tup, int attnum, TupleDesc tupleDesc); extern void index_deform_tuple(IndexTuple tup, TupleDesc tupleDescriptor, Datum *values, bool *isnull); extern IndexTuple CopyIndexTuple(IndexTuple source); #endif /* ITUP_H */