reloptions.h

来自「PostgreSQL 8.2中增加了很多企业用户所需要的功能和性能上的提高,其开」· C头文件 代码 · 共 39 行

H
39
字号
/*------------------------------------------------------------------------- * * reloptions.h *	  Core support for relation options (pg_class.reloptions) * * Note: the functions dealing with text-array reloptions values declare * them as Datum, not ArrayType *, to avoid needing to include array.h * into a lot of low-level code. * * * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * $PostgreSQL: pgsql/src/include/access/reloptions.h,v 1.2 2006/10/04 00:30:07 momjian Exp $ * *------------------------------------------------------------------------- */#ifndef RELOPTIONS_H#define RELOPTIONS_H#include "nodes/pg_list.h"extern Datum transformRelOptions(Datum oldOptions, List *defList,					bool ignoreOids, bool isReset);extern void parseRelOptions(Datum options, int numkeywords,				const char *const * keywords,				char **values, bool validate);extern bytea *default_reloptions(Datum reloptions, bool validate,				   int minFillfactor, int defaultFillfactor);extern bytea *heap_reloptions(char relkind, Datum reloptions, bool validate);extern bytea *index_reloptions(RegProcedure amoptions, Datum reloptions,				 bool validate);#endif   /* RELOPTIONS_H */

⌨️ 快捷键说明

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