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

📄 pgtypes_interval.h

📁 PostgreSQL 8.1.4的源码 适用于Linux下的开源数据库系统
💻 H
字号:
#ifndef PGTYPES_INTERVAL#define PGTYPES_INTERVALtypedef struct{#ifdef HAVE_INT64_TIMESTAMP	int64		time;			/* all time units other than months and years */#else	double		time;			/* all time units other than months and years */#endif	long		month;			/* months and years, after time for alignment */}	interval;#ifdef __cplusplusextern		"C"{#endifextern interval *PGTYPESinterval_from_asc(char *, char **);extern char *PGTYPESinterval_to_asc(interval *);extern int	PGTYPESinterval_copy(interval *, interval *);#ifdef __cplusplus}#endif#endif   /* PGTYPES_INTERVAL */

⌨️ 快捷键说明

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