mirror of
https://github.com/postgres/postgres.git
synced 2025-04-22 23:02:54 +03:00
49 lines
456 B
C
49 lines
456 B
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 _(x)
|
|
|
|
#include "spi_internal.h"
|
|
|
|
|
|
int
|
|
spi_DEBUG(void)
|
|
{
|
|
return DEBUG2;
|
|
}
|
|
|
|
int
|
|
spi_LOG(void)
|
|
{
|
|
return LOG;
|
|
}
|
|
|
|
int
|
|
spi_INFO(void)
|
|
{
|
|
return INFO;
|
|
}
|
|
|
|
int
|
|
spi_NOTICE(void)
|
|
{
|
|
return NOTICE;
|
|
}
|
|
|
|
int
|
|
spi_WARNING(void)
|
|
{
|
|
return WARNING;
|
|
}
|
|
|
|
int
|
|
spi_ERROR(void)
|
|
{
|
|
return ERROR;
|
|
}
|