Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit0cf16b4

Browse files
committed
btree_gin: properly call DirectFunctionCall1()
Previously we called DirectFunctionCall3() with dummy arguments. Fixedversion of previous patch.Report by Jon Nelson
1 parent1d0db8d commit0cf16b4

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

‎contrib/btree_gin/btree_gin.c

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -318,10 +318,7 @@ GIN_SUPPORT(macaddr, false, leftmostvalue_macaddr, macaddr_cmp)
318318
staticDatum
319319
leftmostvalue_inet(void)
320320
{
321-
returnDirectFunctionCall3(inet_in,
322-
CStringGetDatum("0.0.0.0/0"),
323-
ObjectIdGetDatum(0),
324-
Int32GetDatum(-1));
321+
returnDirectFunctionCall1(inet_in,CStringGetDatum("0.0.0.0/0"));
325322
}
326323
GIN_SUPPORT(inet, true,leftmostvalue_inet,network_cmp)
327324

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp