list_utils.h style error

pull/7746/head
naisila 2024-11-14 16:38:34 +03:00
parent c0a5f5c78c
commit 29cbe619f0
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 */