spi_internal.c

来自「PostgreSQL 8.1.4的源码 适用于Linux下的开源数据库系统」· C语言 代码 · 共 55 行

C
55
字号
/* * 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 + =
减小字号Ctrl + -
显示快捷键?