greenplumn pg_type_encoding 源码
greenplumn pg_type_encoding 代码
文件路径:/src/include/catalog/pg_type_encoding.h
/*-------------------------------------------------------------------------
*
* pg_type_encoding.h
* some where to stash type ENCODING () clauses
*
* Portions Copyright (c) EMC, 2011
* Portions Copyright (c) 2012-Present VMware, Inc. or its affiliates.
*
*
* IDENTIFICATION
* src/include/catalog/pg_type_encoding.h
*
*-------------------------------------------------------------------------
*/
#ifndef PG_TYPE_ENCODING_H
#define PG_TYPE_ENCODING_H
#include "catalog/genbki.h"
#include "catalog/pg_type_encoding_d.h"
/* ----------------
* pg_type_encoding definition. cpp turns this into
* typedef struct FormData_pg_type_encoding
* ----------------
*/
CATALOG(pg_type_encoding,6220,TypeEncodingRelationId)
{
Oid typid;
#ifdef CATALOG_VARLEN /* variable-length fields start here */
text typoptions[1];
#endif
} FormData_pg_type_encoding;
/* GPDB added foreign key definitions for gpcheckcat. */
FOREIGN_KEY(typid REFERENCES pg_type(oid));
/* ----------------
* Form_pg_type_encoding corresponds to a pointer to a tuple with
* the format of pg_type_encoding relation.
* ----------------
*/
typedef FormData_pg_type_encoding *Form_pg_type_encoding;
#endif /* PG_TYPE_ENCODING_H */
相关信息
相关文章
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦