mirror of https://github.com/citusdata/citus.git
ruleutils_12.c
Produced this file by copying ruleutils_11.c, then comparing postgres ruleutils.c changes between REL_11_STABLE & REL_12_STABLEpull/2844/head
parent
b7e2908fc2
commit
fbc3e346e8
|
@ -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
|
||||
|
|
|
@ -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
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue