veil_version.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #define VEIL_VERSION "0.9.11"
00015 #define VEIL_VERSION_INFO "Beta"
00016
00017
00018
00019 #define PG_MAJOR_VERSION 8
00020 #define PG_MINOR_VERSION 3
00021
00022 #define SPI_CURSOR_OPEN(name, plan, values, nulls, ro) \
00023 SPI_cursor_open(name, plan, values, nulls, ro)
00024
00025 #define PG_VERSION_GE(major,minor) \
00026 (PG_MAJOR_VERSION > major) || \
00027 ((PG_MAJOR_VERSION == major) && (PG_MINOR_VERSION >= minor))