⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pg_opclass.h

📁 关系型数据库 Postgresql 6.5.2
💻 H
字号:
/*------------------------------------------------------------------------- * * pg_opclass.h *	  definition of the system "opclass" relation (pg_opclass) *	  along with the relation's initial contents. * * * Copyright (c) 1994, Regents of the University of California * * $Id: pg_opclass.h,v 1.19 1999/05/25 16:13:45 momjian Exp $ * * NOTES *	  the genbki.sh script reads this file and generates .bki *	  information from the DATA() statements. * *------------------------------------------------------------------------- */#ifndef PG_OPCLASS_H#define PG_OPCLASS_H/* ---------------- *		postgres.h contains the system type definintions and the *		CATALOG(), BOOTSTRAP and DATA() sugar words so this file *		can be read by both genbki.sh and the C compiler. * ---------------- *//* ---------------- *		pg_opclass definition.	cpp turns this into *		typedef struct FormData_pg_opclass * ---------------- */CATALOG(pg_opclass){	NameData	opcname;	Oid			opcdeftype;} FormData_pg_opclass;/* ---------------- *		Form_pg_opclass corresponds to a pointer to a tuple with *		the format of pg_opclass relation. * ---------------- */typedef FormData_pg_opclass *Form_pg_opclass;/* ---------------- *		compiler constants for pg_opclass * ---------------- */#define Natts_pg_opclass				2#define Anum_pg_opclass_opcname			1#define Anum_pg_opclass_opcdeftype		2/* ---------------- *		initial contents of pg_opclass * ---------------- *//* * putting _null_'s in the (fixed-length) type field is bad * (see the README in this directory), so just put zeros * in, which are invalid OID's anyway.  --djm */DATA(insert OID =  421 (	int2_ops		 21   ));DESCR("");DATA(insert OID =  422 (	box_ops			603   ));DESCR("");DATA(insert OID =  423 (	float8_ops		701   ));DESCR("");DATA(insert OID =  424 (	int24_ops		  0   ));DESCR("");DATA(insert OID =  425 (	int42_ops		  0   ));DESCR("");DATA(insert OID =  426 (	int4_ops		 23   ));DESCR("");#define INT4_OPS_OID 426DATA(insert OID =  427 (	oid_ops			 26   ));DESCR("");DATA(insert OID =  428 (	float4_ops		700   ));DESCR("");DATA(insert OID =  429 (	char_ops		 18   ));DESCR("");DATA(insert OID =  431 (	text_ops		 25   ));DESCR("");DATA(insert OID =  432 (	abstime_ops		702   ));DESCR("");DATA(insert OID =  433 (	bigbox_ops		603   ));DESCR("");DATA(insert OID =  434 (	poly_ops		604   ));DESCR("");DATA(insert OID =  435 (	oid8_ops		 30   ));DESCR("");DATA(insert OID =  714 (	circle_ops		718   ));DESCR("");DATA(insert OID =  754 (	int8_ops		 20   ));DESCR("");DATA(insert OID = 1076 (	bpchar_ops	   1042   ));DESCR("");DATA(insert OID = 1077 (	varchar_ops    1043   ));DESCR("");DATA(insert OID = 1114 (	date_ops	   1082   ));DESCR("");DATA(insert OID = 1115 (	time_ops	   1083   ));DESCR("");DATA(insert OID = 1181 (	name_ops		 19   ));DESCR("");DATA(insert OID = 1312 (	datetime_ops   1184   ));DESCR("");DATA(insert OID = 1313 (	timespan_ops   1186   ));DESCR("");DATA(insert OID = 810  (	macaddr_ops   829	));DESCR("");DATA(insert OID = 935  (	network_ops   869	));DESCR("");DATA(insert OID = 652  (	network_ops   650	));DESCR("");#endif	 /* PG_OPCLASS_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -