citus_indent fix (#7746)

pull/7755/head
Naisila Puka 2024-11-19 13:02:04 +03:00 committed by GitHub
parent ed137001a5
commit b29ecd1b12
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 4 deletions

View File

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