From 46f89ccf65d42679ce47592df0f46a7fa7b69261 Mon Sep 17 00:00:00 2001 From: Naisila Puka <37271756+naisila@users.noreply.github.com> Date: Tue, 19 Nov 2024 13:02:04 +0300 Subject: [PATCH] citus_indent fix (#7746) --- src/include/distributed/commands.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/include/distributed/commands.h b/src/include/distributed/commands.h index 084308a8f..7c18b2bab 100644 --- a/src/include/distributed/commands.h +++ b/src/include/distributed/commands.h @@ -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 */