Skip to content

Commit 1a2586c

Browse files
committed
Rerun pgindent with updated typedef list.
1 parent cdaa45f commit 1a2586c

File tree

3 files changed

+56
-16
lines changed

3 files changed

+56
-16
lines changed

src/backend/commands/typecmds.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1159,7 +1159,7 @@ DefineEnum(CreateEnumStmt *stmt)
11591159
* Registers a new range type.
11601160
*/
11611161
void
1162-
DefineRange(CreateRangeStmt * stmt)
1162+
DefineRange(CreateRangeStmt *stmt)
11631163
{
11641164
char *typeName;
11651165
char *rangeArrayName;

src/backend/utils/adt/rangetypes.c

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ static char *range_parse_bound(char *string, char *ptr, char **bound_str,
5959
bool *infinite);
6060
static char *range_deparse(char flags, char *lbound_str, char *ubound_str);
6161
static char *range_bound_escape(char *in_str);
62-
static bool range_contains_internal(FunctionCallInfo fcinfo, RangeType * r1,
63-
RangeType * r2);
62+
static bool range_contains_internal(FunctionCallInfo fcinfo, RangeType *r1,
63+
RangeType *r2);
6464
static Size datum_compute_size(Size sz, Datum datum, bool typbyval,
6565
char typalign, int16 typlen, char typstorage);
6666
static Pointer datum_write(Pointer ptr, Datum datum, bool typbyval,
@@ -1414,7 +1414,7 @@ tstzrange_subdiff(PG_FUNCTION_ARGS)
14141414
* only be called by a canonicalization function.
14151415
*/
14161416
Datum
1417-
range_serialize(FunctionCallInfo fcinfo, RangeBound * lower, RangeBound * upper,
1417+
range_serialize(FunctionCallInfo fcinfo, RangeBound *lower, RangeBound *upper,
14181418
bool empty)
14191419
{
14201420
Datum range;
@@ -1497,8 +1497,8 @@ range_serialize(FunctionCallInfo fcinfo, RangeBound * lower, RangeBound * upper,
14971497
}
14981498

14991499
void
1500-
range_deserialize(FunctionCallInfo fcinfo, RangeType * range, RangeBound * lower,
1501-
RangeBound * upper, bool *empty)
1500+
range_deserialize(FunctionCallInfo fcinfo, RangeType *range, RangeBound *lower,
1501+
RangeBound *upper, bool *empty)
15021502
{
15031503
Pointer ptr = VARDATA(range);
15041504
char typalign;
@@ -1575,7 +1575,7 @@ range_deserialize(FunctionCallInfo fcinfo, RangeType * range, RangeBound * lower
15751575
* range. This should be used by most callers.
15761576
*/
15771577
Datum
1578-
make_range(FunctionCallInfo fcinfo, RangeBound * lower, RangeBound * upper,
1578+
make_range(FunctionCallInfo fcinfo, RangeBound *lower, RangeBound *upper,
15791579
bool empty)
15801580
{
15811581
Datum range;
@@ -1596,7 +1596,7 @@ make_range(FunctionCallInfo fcinfo, RangeBound * lower, RangeBound * upper,
15961596
}
15971597

15981598
int
1599-
range_cmp_bounds(FunctionCallInfo fcinfo, RangeBound * b1, RangeBound * b2)
1599+
range_cmp_bounds(FunctionCallInfo fcinfo, RangeBound *b1, RangeBound *b2)
16001600
{
16011601
int result;
16021602

@@ -1652,7 +1652,7 @@ make_empty_range(FunctionCallInfo fcinfo, Oid rngtypid)
16521652
*/
16531653
void
16541654
range_gettypinfo(FunctionCallInfo fcinfo, Oid rngtypid,
1655-
RangeTypeInfo * rngtypinfo)
1655+
RangeTypeInfo *rngtypinfo)
16561656
{
16571657
RangeTypeInfo *cached = (RangeTypeInfo *) fcinfo->flinfo->fn_extra;
16581658

@@ -2068,7 +2068,7 @@ range_bound_escape(char *value)
20682068
}
20692069

20702070
static bool
2071-
range_contains_internal(FunctionCallInfo fcinfo, RangeType * r1, RangeType * r2)
2071+
range_contains_internal(FunctionCallInfo fcinfo, RangeType *r1, RangeType *r2)
20722072
{
20732073
RangeBound lower1;
20742074
RangeBound upper1;

0 commit comments

Comments
 (0)