Skip to content

Commit

Permalink
citus_indent fix
Browse files Browse the repository at this point in the history
  • Loading branch information
naisila committed Nov 14, 2024
1 parent c0a5f5c commit 7ad071f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/include/distributed/commands.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down
2 changes: 1 addition & 1 deletion src/include/distributed/listutils.h
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ typedef struct ListCellAndListWrapper
for (int var ## PositionDoNotUse = 0; \
(var ## PositionDoNotUse) < list_length(l) && \
(((var) = list_nth(l, var ## PositionDoNotUse)) || true); \
var ## PositionDoNotUse ++)
var ## PositionDoNotUse++)

/* utility functions declaration shared within this module */
extern List * SortList(List *pointerList,
Expand Down

0 comments on commit 7ad071f

Please sign in to comment.