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

📄 pgtypes_interval.h

📁 PostgreSQL7.4.6 for 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;extern interval *PGTYPESinterval_from_asc(char *, char **);extern char *PGTYPESinterval_to_asc(interval *);extern int	PGTYPESinterval_copy(interval *, interval *);#endif   /* PGTYPES_INTERVAL */

⌨️ 快捷键说明

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