Include version 9.0.0 in escape function check.

This commit is contained in:
rpedela 2013-07-23 12:20:02 -06:00
parent 8129f19409
commit 6dffc0c6cd

View File

@ -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