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

📄 spi_internal.c

📁 PostgreSQL 8.1.4的源码 适用于Linux下的开源数据库系统
💻 C
字号:
/* * This kludge is necessary because of the conflicting * definitions of 'DEBUG' between postgres and perl. * we'll live. */#include "postgres.h"/* Defined by Perl */#undef _/* stop perl from hijacking stdio and other stuff */#ifdef WIN32#define WIN32IO_IS_STDIO#endif #include "spi_internal.h"intspi_DEBUG(void){	return DEBUG2;}intspi_LOG(void){	return LOG;}intspi_INFO(void){	return INFO;}intspi_NOTICE(void){	return NOTICE;}intspi_WARNING(void){	return WARNING;}intspi_ERROR(void){	return ERROR;}

⌨️ 快捷键说明

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