greenplumn pgtypeslib_extern 源码

  • 2022-08-18
  • 浏览 (271)

greenplumn pgtypeslib_extern 代码

文件路径:/src/interfaces/ecpg/pgtypeslib/pgtypeslib_extern.h

/* src/interfaces/ecpg/pgtypeslib/pgtypeslib_extern.h */

#ifndef _ECPG_PGTYPESLIB_EXTERN_H
#define _ECPG_PGTYPESLIB_EXTERN_H

#include "pgtypes_error.h"

/* These are the constants that decide which printf() format we'll use in
 * order to get a string representation of the value */
#define PGTYPES_TYPE_NOTHING			0
#define PGTYPES_TYPE_STRING_MALLOCED		1
#define PGTYPES_TYPE_STRING_CONSTANT		2
#define PGTYPES_TYPE_CHAR			3
#define PGTYPES_TYPE_DOUBLE_NF			4	/* no fractional part */
#define PGTYPES_TYPE_INT64			5
#define PGTYPES_TYPE_UINT			6
#define PGTYPES_TYPE_UINT_2_LZ			7	/* 2 digits, pad with leading zero */
#define PGTYPES_TYPE_UINT_2_LS			8	/* 2 digits, pad with leading
											 * space */
#define PGTYPES_TYPE_UINT_3_LZ			9
#define PGTYPES_TYPE_UINT_4_LZ			10
#define PGTYPES_TYPE_UINT_LONG			11

#define PGTYPES_FMT_NUM_MAX_DIGITS		40

union un_fmt_comb
{
	char	   *str_val;
	unsigned int uint_val;
	char		char_val;
	unsigned long int luint_val;
	double		double_val;
	int64		int64_val;
};

int			pgtypes_fmt_replace(union un_fmt_comb, int, char **, int *);

char	   *pgtypes_alloc(long);
char	   *pgtypes_strdup(const char *);

#ifndef bool
#define bool char
#endif							/* ndef bool */

#ifndef FALSE
#define FALSE	0
#endif							/* FALSE */

#ifndef TRUE
#define TRUE	   1
#endif							/* TRUE */

#endif							/* _ECPG_PGTYPESLIB_EXTERN_H */

相关信息

greenplumn 源码目录

相关文章

greenplumn common 源码

greenplumn datetime 源码

greenplumn dt 源码

greenplumn dt_common 源码

greenplumn interval 源码

greenplumn numeric 源码

greenplumn timestamp 源码

0  赞