ruleutils_12.c

Produced this file by copying ruleutils_11.c,
then comparing postgres ruleutils.c changes between REL_11_STABLE & REL_12_STABLE
pull/2844/head
Philip Dubé 2019-08-08 21:22:55 +00:00
parent b7e2908fc2
commit fbc3e346e8
4 changed files with 7916 additions and 5 deletions

1
.gitattributes vendored
View File

@ -28,4 +28,5 @@ configure -whitespace
src/backend/distributed/utils/citus_outfuncs.c -citus-style
src/backend/distributed/utils/ruleutils_10.c -citus-style
src/backend/distributed/utils/ruleutils_11.c -citus-style
src/backend/distributed/utils/ruleutils_12.c -citus-style
src/include/distributed/citus_nodes.h -citus-style

View File

@ -17,7 +17,7 @@
#include "postgres.h"
#if (PG_VERSION_NUM >= 110000)
#if (PG_VERSION_NUM >= 110000) && (PG_VERSION_NUM < 120000)
#include <ctype.h>
#include <unistd.h>
@ -7909,4 +7909,4 @@ get_range_partbound_string(List *bound_datums)
return buf->data;
}
#endif /* (PG_VERSION_NUM >= 110000) */
#endif /* (PG_VERSION_NUM >= 110000) && (PG_VERSION_NUM < 120000) */

File diff suppressed because it is too large Load Diff

View File

@ -12,11 +12,8 @@
#define CITUS_RULEUTILS_H
#include "postgres.h" /* IWYU pragma: keep */
#include "c.h"
#if (PG_VERSION_NUM >= 100000)
#include "catalog/pg_sequence.h"
#endif
#include "commands/sequence.h"
#include "lib/stringinfo.h"
#include "nodes/parsenodes.h"