add copy of ruleutils_12 as ruleutils_13

pull/3900/head
Sait Talha Nisanci 2020-05-18 11:43:53 +03:00
parent 58643a4098
commit 30549dc0e2
5 changed files with 8012 additions and 4 deletions

2
.gitattributes vendored
View File

@ -30,6 +30,8 @@ src/backend/distributed/utils/pg11_snprintf.c -citus-style
src/backend/distributed/deparser/ruleutils_10.c -citus-style
src/backend/distributed/deparser/ruleutils_11.c -citus-style
src/backend/distributed/deparser/ruleutils_12.c -citus-style
src/backend/distributed/deparser/ruleutils_13.c -citus-style
src/include/distributed/citus_nodes.h -citus-style
/vendor/** -citus-style

View File

@ -15,12 +15,14 @@
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include "distributed/pg_version_constants.h"
#include "pg_config.h"
#if (PG_VERSION_NUM >= PG_VERSION_11) && (PG_VERSION_NUM < PG_VERSION_12)
#include "postgres.h"
#include <ctype.h>
#include <unistd.h>
#include <fcntl.h>

View File

@ -14,12 +14,14 @@
* This needs to be closely in sync with the core code.
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include "distributed/pg_version_constants.h"
#include "pg_config.h"
#if (PG_VERSION_NUM >= PG_VERSION_12) && (PG_VERSION_NUM < PG_VERSION_13)
#include "postgres.h"
#include <ctype.h>
#include <unistd.h>
#include <fcntl.h>

File diff suppressed because it is too large Load Diff

View File

@ -14,5 +14,6 @@
#define PG_VERSION_11 110000
#define PG_VERSION_12 120000
#define PG_VERSION_13 130000
#define PG_VERSION_14 140000
#endif /* PG_VERSION_CONSTANTS */