mirror of https://github.com/citusdata/citus.git
19 lines
445 B
C
19 lines
445 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* pg_version_constants.h
|
|
* pg version related constants.
|
|
*
|
|
* Copyright (c) Citus Data, Inc.
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef PG_VERSION_CONSTANTS
|
|
#define PG_VERSION_CONSTANTS
|
|
|
|
#define PG_VERSION_11 110000
|
|
#define PG_VERSION_12 120000
|
|
#define PG_VERSION_13 130000
|
|
|
|
#endif /* PG_VERSION_CONSTANTS */
|