📄 spi_internal.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 + -