Skip to content

Commit 068f0da

Browse files
committed
cosmetic fixes
1 parent e9f2f32 commit 068f0da

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/include/pathman.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ void select_range_partitions(const Datum value,
162162
const RangeEntry *ranges,
163163
const int nranges,
164164
const int strategy,
165-
Oid collid,
165+
const Oid collid,
166166
WrapperNode *result);
167167

168168

src/include/relation_info.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ FreeBound(Bound *bound, bool byval)
8282
}
8383

8484
inline static int
85-
cmp_bounds(FmgrInfo *cmp_func, Oid collid, const Bound *b1, const Bound *b2)
85+
cmp_bounds(FmgrInfo *cmp_func, const Oid collid, const Bound *b1, const Bound *b2)
8686
{
8787
if (IsMinusInfinity(b1) || IsPlusInfinity(b2))
8888
return -1;

src/pg_pathman.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ select_range_partitions(const Datum value,
395395
const RangeEntry *ranges,
396396
const int nranges,
397397
const int strategy,
398-
Oid collid,
398+
const Oid collid,
399399
WrapperNode *result) /* returned partitions */
400400
{
401401
bool lossy = false,

0 commit comments

Comments
 (0)