Hackfut Security File Manager
Current Path:
/opt/td-agent/embedded/include/postgresql/server/catalog
opt
/
td-agent
/
embedded
/
include
/
postgresql
/
server
/
catalog
/
📁
..
📄
binary_upgrade.h
(1.02 KB)
📄
catalog.h
(1.59 KB)
📄
catversion.h
(2.53 KB)
📄
dependency.h
(10.05 KB)
📄
genbki.h
(1.68 KB)
📄
heap.h
(4.06 KB)
📄
index.h
(3.65 KB)
📄
indexing.h
(17.13 KB)
📄
namespace.h
(5.91 KB)
📄
objectaccess.h
(6.03 KB)
📄
objectaddress.h
(2.83 KB)
📄
opfam_internal.h
(869 B)
📄
pg_aggregate.h
(25.06 KB)
📄
pg_am.h
(2.33 KB)
📄
pg_amop.h
(40.58 KB)
📄
pg_amproc.h
(25.23 KB)
📄
pg_attrdef.h
(1.63 KB)
📄
pg_attribute.h
(7.19 KB)
📄
pg_auth_members.h
(1.75 KB)
📄
pg_authid.h
(3.51 KB)
📄
pg_cast.h
(12.1 KB)
📄
pg_class.h
(7.02 KB)
📄
pg_collation.h
(2.23 KB)
📄
pg_collation_fn.h
(735 B)
📄
pg_constraint.h
(6.23 KB)
📄
pg_constraint_fn.h
(2.61 KB)
📄
pg_control.h
(8.84 KB)
📄
pg_conversion.h
(2.13 KB)
📄
pg_conversion_fn.h
(880 B)
📄
pg_database.h
(2.74 KB)
📄
pg_db_role_setting.h
(2.01 KB)
📄
pg_default_acl.h
(2.1 KB)
📄
pg_depend.h
(2.73 KB)
📄
pg_description.h
(2.94 KB)
📄
pg_enum.h
(1.84 KB)
📄
pg_event_trigger.h
(1.9 KB)
📄
pg_extension.h
(2.1 KB)
📄
pg_foreign_data_wrapper.h
(2.02 KB)
📄
pg_foreign_server.h
(1.87 KB)
📄
pg_foreign_table.h
(1.59 KB)
📄
pg_index.h
(3.9 KB)
📄
pg_inherits.h
(1.46 KB)
📄
pg_inherits_fn.h
(850 B)
📄
pg_init_privs.h
(3.35 KB)
📄
pg_language.h
(2.38 KB)
📄
pg_largeobject.h
(1.75 KB)
📄
pg_largeobject_metadata.h
(1.67 KB)
📄
pg_namespace.h
(2.23 KB)
📄
pg_opclass.h
(14.31 KB)
📄
pg_operator.h
(102.4 KB)
📄
pg_operator_fn.h
(1 KB)
📄
pg_opfamily.h
(8.55 KB)
📄
pg_pltemplate.h
(3.16 KB)
📄
pg_policy.h
(1.35 KB)
📄
pg_proc.h
(548.84 KB)
📄
pg_proc_fn.h
(1.27 KB)
📄
pg_range.h
(2.53 KB)
📄
pg_replication_origin.h
(1.91 KB)
📄
pg_rewrite.h
(1.8 KB)
📄
pg_seclabel.h
(1.37 KB)
📄
pg_shdepend.h
(2.75 KB)
📄
pg_shdescription.h
(2.41 KB)
📄
pg_shseclabel.h
(1.48 KB)
📄
pg_statistic.h
(12.31 KB)
📄
pg_tablespace.h
(1.85 KB)
📄
pg_transform.h
(1.1 KB)
📄
pg_trigger.h
(5.63 KB)
📄
pg_ts_config.h
(1.61 KB)
📄
pg_ts_config_map.h
(2.28 KB)
📄
pg_ts_dict.h
(1.78 KB)
📄
pg_ts_parser.h
(1.95 KB)
📄
pg_ts_template.h
(2.1 KB)
📄
pg_type.h
(43.83 KB)
📄
pg_type_fn.h
(2.13 KB)
📄
pg_user_mapping.h
(1.59 KB)
📄
schemapg.h
(17.11 KB)
📄
storage.h
(1.12 KB)
📄
storage_xlog.h
(1.55 KB)
📄
toasting.h
(2.23 KB)
Editing: pg_opfamily.h
/*------------------------------------------------------------------------- * * pg_opfamily.h * definition of the system "opfamily" relation (pg_opfamily) * along with the relation's initial contents. * * * Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * src/include/catalog/pg_opfamily.h * * NOTES * the genbki.pl script reads this file and generates .bki * information from the DATA() statements. * *------------------------------------------------------------------------- */ #ifndef PG_OPFAMILY_H #define PG_OPFAMILY_H #include "catalog/genbki.h" /* ---------------- * pg_opfamily definition. cpp turns this into * typedef struct FormData_pg_opfamily * ---------------- */ #define OperatorFamilyRelationId 2753 CATALOG(pg_opfamily,2753) { Oid opfmethod; /* index access method opfamily is for */ NameData opfname; /* name of this opfamily */ Oid opfnamespace; /* namespace of this opfamily */ Oid opfowner; /* opfamily owner */ } FormData_pg_opfamily; /* ---------------- * Form_pg_opfamily corresponds to a pointer to a tuple with * the format of pg_opfamily relation. * ---------------- */ typedef FormData_pg_opfamily *Form_pg_opfamily; /* ---------------- * compiler constants for pg_opfamily * ---------------- */ #define Natts_pg_opfamily 4 #define Anum_pg_opfamily_opfmethod 1 #define Anum_pg_opfamily_opfname 2 #define Anum_pg_opfamily_opfnamespace 3 #define Anum_pg_opfamily_opfowner 4 /* ---------------- * initial contents of pg_opfamily * ---------------- */ DATA(insert OID = 421 ( 403 abstime_ops PGNSP PGUID )); DATA(insert OID = 397 ( 403 array_ops PGNSP PGUID )); DATA(insert OID = 627 ( 405 array_ops PGNSP PGUID )); DATA(insert OID = 423 ( 403 bit_ops PGNSP PGUID )); DATA(insert OID = 424 ( 403 bool_ops PGNSP PGUID )); #define BOOL_BTREE_FAM_OID 424 DATA(insert OID = 426 ( 403 bpchar_ops PGNSP PGUID )); #define BPCHAR_BTREE_FAM_OID 426 DATA(insert OID = 427 ( 405 bpchar_ops PGNSP PGUID )); DATA(insert OID = 428 ( 403 bytea_ops PGNSP PGUID )); #define BYTEA_BTREE_FAM_OID 428 DATA(insert OID = 429 ( 403 char_ops PGNSP PGUID )); DATA(insert OID = 431 ( 405 char_ops PGNSP PGUID )); DATA(insert OID = 434 ( 403 datetime_ops PGNSP PGUID )); DATA(insert OID = 435 ( 405 date_ops PGNSP PGUID )); DATA(insert OID = 1970 ( 403 float_ops PGNSP PGUID )); DATA(insert OID = 1971 ( 405 float_ops PGNSP PGUID )); DATA(insert OID = 1974 ( 403 network_ops PGNSP PGUID )); #define NETWORK_BTREE_FAM_OID 1974 DATA(insert OID = 1975 ( 405 network_ops PGNSP PGUID )); DATA(insert OID = 3550 ( 783 network_ops PGNSP PGUID )); DATA(insert OID = 1976 ( 403 integer_ops PGNSP PGUID )); #define INTEGER_BTREE_FAM_OID 1976 DATA(insert OID = 1977 ( 405 integer_ops PGNSP PGUID )); DATA(insert OID = 1982 ( 403 interval_ops PGNSP PGUID )); DATA(insert OID = 1983 ( 405 interval_ops PGNSP PGUID )); DATA(insert OID = 1984 ( 403 macaddr_ops PGNSP PGUID )); DATA(insert OID = 1985 ( 405 macaddr_ops PGNSP PGUID )); DATA(insert OID = 1986 ( 403 name_ops PGNSP PGUID )); #define NAME_BTREE_FAM_OID 1986 DATA(insert OID = 1987 ( 405 name_ops PGNSP PGUID )); DATA(insert OID = 1988 ( 403 numeric_ops PGNSP PGUID )); DATA(insert OID = 1998 ( 405 numeric_ops PGNSP PGUID )); DATA(insert OID = 1989 ( 403 oid_ops PGNSP PGUID )); #define OID_BTREE_FAM_OID 1989 DATA(insert OID = 1990 ( 405 oid_ops PGNSP PGUID )); DATA(insert OID = 1991 ( 403 oidvector_ops PGNSP PGUID )); DATA(insert OID = 1992 ( 405 oidvector_ops PGNSP PGUID )); DATA(insert OID = 2994 ( 403 record_ops PGNSP PGUID )); DATA(insert OID = 3194 ( 403 record_image_ops PGNSP PGUID )); DATA(insert OID = 1994 ( 403 text_ops PGNSP PGUID )); #define TEXT_BTREE_FAM_OID 1994 DATA(insert OID = 1995 ( 405 text_ops PGNSP PGUID )); DATA(insert OID = 1996 ( 403 time_ops PGNSP PGUID )); DATA(insert OID = 1997 ( 405 time_ops PGNSP PGUID )); DATA(insert OID = 1999 ( 405 timestamptz_ops PGNSP PGUID )); DATA(insert OID = 2000 ( 403 timetz_ops PGNSP PGUID )); DATA(insert OID = 2001 ( 405 timetz_ops PGNSP PGUID )); DATA(insert OID = 2002 ( 403 varbit_ops PGNSP PGUID )); DATA(insert OID = 2040 ( 405 timestamp_ops PGNSP PGUID )); DATA(insert OID = 2095 ( 403 text_pattern_ops PGNSP PGUID )); #define TEXT_PATTERN_BTREE_FAM_OID 2095 DATA(insert OID = 2097 ( 403 bpchar_pattern_ops PGNSP PGUID )); #define BPCHAR_PATTERN_BTREE_FAM_OID 2097 DATA(insert OID = 2099 ( 403 money_ops PGNSP PGUID )); DATA(insert OID = 2222 ( 405 bool_ops PGNSP PGUID )); #define BOOL_HASH_FAM_OID 2222 DATA(insert OID = 2223 ( 405 bytea_ops PGNSP PGUID )); DATA(insert OID = 2224 ( 405 int2vector_ops PGNSP PGUID )); DATA(insert OID = 2789 ( 403 tid_ops PGNSP PGUID )); DATA(insert OID = 2225 ( 405 xid_ops PGNSP PGUID )); DATA(insert OID = 2226 ( 405 cid_ops PGNSP PGUID )); DATA(insert OID = 2227 ( 405 abstime_ops PGNSP PGUID )); DATA(insert OID = 2228 ( 405 reltime_ops PGNSP PGUID )); DATA(insert OID = 2229 ( 405 text_pattern_ops PGNSP PGUID )); DATA(insert OID = 2231 ( 405 bpchar_pattern_ops PGNSP PGUID )); DATA(insert OID = 2233 ( 403 reltime_ops PGNSP PGUID )); DATA(insert OID = 2234 ( 403 tinterval_ops PGNSP PGUID )); DATA(insert OID = 2235 ( 405 aclitem_ops PGNSP PGUID )); DATA(insert OID = 2593 ( 783 box_ops PGNSP PGUID )); DATA(insert OID = 2594 ( 783 poly_ops PGNSP PGUID )); DATA(insert OID = 2595 ( 783 circle_ops PGNSP PGUID )); DATA(insert OID = 1029 ( 783 point_ops PGNSP PGUID )); DATA(insert OID = 2745 ( 2742 array_ops PGNSP PGUID )); DATA(insert OID = 2968 ( 403 uuid_ops PGNSP PGUID )); DATA(insert OID = 2969 ( 405 uuid_ops PGNSP PGUID )); DATA(insert OID = 3253 ( 403 pg_lsn_ops PGNSP PGUID )); DATA(insert OID = 3254 ( 405 pg_lsn_ops PGNSP PGUID )); DATA(insert OID = 3522 ( 403 enum_ops PGNSP PGUID )); DATA(insert OID = 3523 ( 405 enum_ops PGNSP PGUID )); DATA(insert OID = 3626 ( 403 tsvector_ops PGNSP PGUID )); DATA(insert OID = 3655 ( 783 tsvector_ops PGNSP PGUID )); DATA(insert OID = 3659 ( 2742 tsvector_ops PGNSP PGUID )); DATA(insert OID = 3683 ( 403 tsquery_ops PGNSP PGUID )); DATA(insert OID = 3702 ( 783 tsquery_ops PGNSP PGUID )); DATA(insert OID = 3901 ( 403 range_ops PGNSP PGUID )); DATA(insert OID = 3903 ( 405 range_ops PGNSP PGUID )); DATA(insert OID = 3919 ( 783 range_ops PGNSP PGUID )); DATA(insert OID = 3474 ( 4000 range_ops PGNSP PGUID )); DATA(insert OID = 4015 ( 4000 quad_point_ops PGNSP PGUID )); DATA(insert OID = 4016 ( 4000 kd_point_ops PGNSP PGUID )); DATA(insert OID = 4017 ( 4000 text_ops PGNSP PGUID )); #define TEXT_SPGIST_FAM_OID 4017 DATA(insert OID = 4033 ( 403 jsonb_ops PGNSP PGUID )); DATA(insert OID = 4034 ( 405 jsonb_ops PGNSP PGUID )); DATA(insert OID = 4035 ( 783 jsonb_ops PGNSP PGUID )); DATA(insert OID = 4036 ( 2742 jsonb_ops PGNSP PGUID )); DATA(insert OID = 4037 ( 2742 jsonb_path_ops PGNSP PGUID )); DATA(insert OID = 4054 ( 3580 integer_minmax_ops PGNSP PGUID )); DATA(insert OID = 4055 ( 3580 numeric_minmax_ops PGNSP PGUID )); DATA(insert OID = 4056 ( 3580 text_minmax_ops PGNSP PGUID )); DATA(insert OID = 4058 ( 3580 timetz_minmax_ops PGNSP PGUID )); DATA(insert OID = 4059 ( 3580 datetime_minmax_ops PGNSP PGUID )); DATA(insert OID = 4062 ( 3580 char_minmax_ops PGNSP PGUID )); DATA(insert OID = 4064 ( 3580 bytea_minmax_ops PGNSP PGUID )); DATA(insert OID = 4065 ( 3580 name_minmax_ops PGNSP PGUID )); DATA(insert OID = 4068 ( 3580 oid_minmax_ops PGNSP PGUID )); DATA(insert OID = 4069 ( 3580 tid_minmax_ops PGNSP PGUID )); DATA(insert OID = 4070 ( 3580 float_minmax_ops PGNSP PGUID )); DATA(insert OID = 4072 ( 3580 abstime_minmax_ops PGNSP PGUID )); DATA(insert OID = 4073 ( 3580 reltime_minmax_ops PGNSP PGUID )); DATA(insert OID = 4074 ( 3580 macaddr_minmax_ops PGNSP PGUID )); DATA(insert OID = 4075 ( 3580 network_minmax_ops PGNSP PGUID )); DATA(insert OID = 4102 ( 3580 network_inclusion_ops PGNSP PGUID )); DATA(insert OID = 4076 ( 3580 bpchar_minmax_ops PGNSP PGUID )); DATA(insert OID = 4077 ( 3580 time_minmax_ops PGNSP PGUID )); DATA(insert OID = 4078 ( 3580 interval_minmax_ops PGNSP PGUID )); DATA(insert OID = 4079 ( 3580 bit_minmax_ops PGNSP PGUID )); DATA(insert OID = 4080 ( 3580 varbit_minmax_ops PGNSP PGUID )); DATA(insert OID = 4081 ( 3580 uuid_minmax_ops PGNSP PGUID )); DATA(insert OID = 4103 ( 3580 range_inclusion_ops PGNSP PGUID )); DATA(insert OID = 4082 ( 3580 pg_lsn_minmax_ops PGNSP PGUID )); DATA(insert OID = 4104 ( 3580 box_inclusion_ops PGNSP PGUID )); DATA(insert OID = 5000 ( 4000 box_ops PGNSP PGUID )); #endif /* PG_OPFAMILY_H */
Upload File
Create Folder