aboutsummaryrefslogtreecommitdiff
path: root/src/test/locale/test-pgsql-locale.c
blob: 560962a61295907a31c7f1c55f82e49c8eefcef2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>
#include "postgres.h"

int
main()
{
#ifdef USE_LOCALE
	printf("PostgreSQL compiled with locale support\n");
	return 0;
#else
	printf("PostgreSQL compiled without locale support\n");
	return 1;
#endif
}