Fix a few files not properly indented.

other-indent
Jeff Davis 2020-12-18 09:18:55 -08:00
parent 145112f3a0
commit d05a5c8766
4 changed files with 11 additions and 11 deletions

View File

@ -232,9 +232,9 @@ ClientHostAddress(StringInfo clientHostStringInfo)
#ifdef HAVE_IPV6
case AF_INET6:
#endif
{
break;
}
{
break;
}
default:
{

View File

@ -313,10 +313,10 @@ GetRangeTblKind(RangeTblEntry *rte)
#if PG_VERSION_NUM >= PG_VERSION_12
case RTE_RESULT:
#endif
{
rteKind = (CitusRTEKind) rte->rtekind;
break;
}
{
rteKind = (CitusRTEKind) rte->rtekind;
break;
}
case RTE_FUNCTION:
{

View File

@ -37,10 +37,10 @@
*/
typedef struct DistributeObjectOps
{
char * (*deparse)(Node *);
char *(*deparse)(Node *);
void (*qualify)(Node *);
List * (*preprocess)(Node *, const char *);
List * (*postprocess)(Node *, const char *);
List *(*preprocess)(Node *, const char *);
List *(*postprocess)(Node *, const char *);
ObjectAddress (*address)(Node *, bool);
} DistributeObjectOps;

View File

@ -108,7 +108,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++)
#else
#define foreach_ptr_append(var, l) foreach_ptr(var, l)
#endif