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.217.14
Domains :
Cant Read [ /etc/named.conf ]
User : gerathty
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
include /
pgsql /
server /
optimizer /
Delete
Unzip
Name
Size
Permission
Date
Action
clauses.h
2.88
KB
-rw-r--r--
2023-12-20 12:58
cost.h
7.33
KB
-rw-r--r--
2023-12-20 12:58
geqo.h
2.12
KB
-rw-r--r--
2023-12-20 12:58
geqo_copy.h
966
B
-rw-r--r--
2023-12-20 12:58
geqo_gene.h
1.09
KB
-rw-r--r--
2023-12-20 12:58
geqo_misc.h
1.1
KB
-rw-r--r--
2023-12-20 12:58
geqo_mutation.h
959
B
-rw-r--r--
2023-12-20 12:58
geqo_pool.h
1.29
KB
-rw-r--r--
2023-12-20 12:58
geqo_random.h
1.28
KB
-rw-r--r--
2023-12-20 12:58
geqo_recombination.h
2.58
KB
-rw-r--r--
2023-12-20 12:58
geqo_selection.h
1015
B
-rw-r--r--
2023-12-20 12:58
joininfo.h
836
B
-rw-r--r--
2023-12-20 12:58
pathnode.h
5.53
KB
-rw-r--r--
2023-12-20 12:58
paths.h
6.83
KB
-rw-r--r--
2023-12-20 12:58
placeholder.h
1.2
KB
-rw-r--r--
2023-12-20 12:58
plancat.h
1.65
KB
-rw-r--r--
2023-12-20 12:58
planmain.h
5.1
KB
-rw-r--r--
2023-12-20 12:58
planner.h
1.33
KB
-rw-r--r--
2023-12-20 12:58
predtest.h
668
B
-rw-r--r--
2023-12-20 12:58
prep.h
1.73
KB
-rw-r--r--
2023-12-20 12:58
restrictinfo.h
1.71
KB
-rw-r--r--
2023-12-20 12:58
subselect.h
1.38
KB
-rw-r--r--
2023-12-20 12:58
tlist.h
1.69
KB
-rw-r--r--
2023-12-20 12:58
var.h
1.5
KB
-rw-r--r--
2023-12-20 12:58
Save
Rename
/*------------------------------------------------------------------------- * * plancat.h * prototypes for plancat.c. * * * Portions Copyright (c) 1996-2012, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * src/include/optimizer/plancat.h * *------------------------------------------------------------------------- */ #ifndef PLANCAT_H #define PLANCAT_H #include "nodes/relation.h" #include "utils/relcache.h" /* Hook for plugins to get control in get_relation_info() */ typedef void (*get_relation_info_hook_type) (PlannerInfo *root, Oid relationObjectId, bool inhparent, RelOptInfo *rel); extern PGDLLIMPORT get_relation_info_hook_type get_relation_info_hook; extern void get_relation_info(PlannerInfo *root, Oid relationObjectId, bool inhparent, RelOptInfo *rel); extern void estimate_rel_size(Relation rel, int32 *attr_widths, BlockNumber *pages, double *tuples, double *allvisfrac); extern int32 get_relation_data_width(Oid relid, int32 *attr_widths); extern bool relation_excluded_by_constraints(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte); extern List *build_physical_tlist(PlannerInfo *root, RelOptInfo *rel); extern bool has_unique_index(RelOptInfo *rel, AttrNumber attno); extern Selectivity restriction_selectivity(PlannerInfo *root, Oid operatorid, List *args, Oid inputcollid, int varRelid); extern Selectivity join_selectivity(PlannerInfo *root, Oid operatorid, List *args, Oid inputcollid, JoinType jointype, SpecialJoinInfo *sjinfo); #endif /* PLANCAT_H */