From 6dffc0c6cdcab202e6d48888f70a1d59e5cc8905 Mon Sep 17 00:00:00 2001 From: rpedela Date: Tue, 23 Jul 2013 12:20:02 -0600 Subject: [PATCH] Include version 9.0.0 in escape function check. --- src/binding.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/binding.cc b/src/binding.cc index 17794a8..a9a7943 100644 --- a/src/binding.cc +++ b/src/binding.cc @@ -9,7 +9,7 @@ #define LOG(msg) printf("%s\n",msg); #define TRACE(msg) //printf("%s\n", msg); -#if PG_VERSION_NUM > 90000 +#if PG_VERSION_NUM >= 90000 #define ESCAPE_SUPPORTED #endif