citus_indent fix (#7746)

pull/7922/head
Naisila Puka 2024-11-19 13:02:04 +03:00 committed by naisila
parent 51c2e63c30
commit 46f89ccf65
1 changed files with 4 additions and 4 deletions

View File

@ -80,11 +80,11 @@ typedef enum DistOpsOperationType
*/ */
typedef struct DistributeObjectOps typedef struct DistributeObjectOps
{ {
char * (*deparse)(Node *); char *(*deparse)(Node *);
void (*qualify)(Node *); void (*qualify)(Node *);
List * (*preprocess)(Node *, const char *, ProcessUtilityContext); List *(*preprocess)(Node *, const char *, ProcessUtilityContext);
List * (*postprocess)(Node *, const char *); List *(*postprocess)(Node *, const char *);
List * (*address)(Node *, bool, bool); List *(*address)(Node *, bool, bool);
bool markDistributed; bool markDistributed;
/* fields used by common implementations, omitted for specialized implementations */ /* fields used by common implementations, omitted for specialized implementations */