mirror of https://github.com/citusdata/citus.git
27 lines
778 B
C
27 lines
778 B
C
/* Citus full name as a string */
|
|
#define CITUS_NAME "Citus"
|
|
|
|
/* Citus edition as a string */
|
|
#define CITUS_EDITION "community"
|
|
|
|
/* Extension version expected by this Citus build */
|
|
#define CITUS_EXTENSIONVERSION "7.5-7"
|
|
|
|
/* Citus major version as a string */
|
|
#define CITUS_MAJORVERSION "7.5"
|
|
|
|
/* Citus version as a string */
|
|
#define CITUS_VERSION "7.5.2"
|
|
|
|
/* Citus version as a number */
|
|
#define CITUS_VERSION_NUM 70500
|
|
|
|
/* A string containing the version number, platform, and C compiler */
|
|
#define CITUS_VERSION_STR "Citus 7.5.2 on x86_64-windows, compiled by Visual Studio"
|
|
|
|
/* Define to 1 if you have the `curl' library (-lcurl). */
|
|
#define HAVE_LIBCURL 0
|
|
|
|
/* Base URL for statistics collection and update checks */
|
|
#define REPORTS_BASE_URL "https://reports.citusdata.com"
|