mirror of https://github.com/citusdata/citus.git
20 lines
474 B
C
20 lines
474 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_14 140000
|
|
#define PG_VERSION_15 150000
|
|
#define PG_VERSION_16 160000
|
|
#define PG_VERSION_17 170000
|
|
|
|
#endif /* PG_VERSION_CONSTANTS */
|