We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b47467 commit fc70104Copy full SHA for fc70104
src/interfaces/odbc/multibyte.c
@@ -15,6 +15,9 @@
15
#include <ctype.h>
16
#include <stdio.h>
17
#include <stdlib.h>
18
+#ifndef TRUE
19
+#define TRUE 1
20
+#endif
21
22
pg_CS CS_Table[] =
23
{
src/interfaces/odbc/pgtypes.c
@@ -1266,7 +1266,9 @@ ctype_length(Int2 ctype)
1266
1267
case SQL_C_BINARY:
1268
case SQL_C_CHAR:
1269
+#ifdef UNICODE_SUPPORT
1270
case SQL_C_WCHAR:
1271
+#endif /* UNICODE_SUPPORT */
1272
return 0;
1273
1274
default: /* should never happen */
0 commit comments