From fad5eada0804d87f74c647853dd4529647edf8b3 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Thu, 20 Sep 2007 23:27:11 +0000 Subject: [PATCH] Solaris portability fix that was previously made in contrib/tsearch2 but got lost from the version committed to main tree. Per Greg Stark. --- src/backend/utils/adt/tsquery_cleanup.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/backend/utils/adt/tsquery_cleanup.c b/src/backend/utils/adt/tsquery_cleanup.c index 2d59e6d08d..b90aafbc8f 100644 --- a/src/backend/utils/adt/tsquery_cleanup.c +++ b/src/backend/utils/adt/tsquery_cleanup.c @@ -194,6 +194,9 @@ clean_NOT(QueryItem * ptr, int *len) #ifdef V_UNKNOWN /* exists in Windows headers */ #undef V_UNKNOWN #endif +#ifdef V_FALSE /* exists in Solaris headers */ +#undef V_FALSE +#endif /* * output values for result output parameter of clean_fakeval_intree -- 2.39.5