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

Commit992a18f

Browse files
committed
Fix incorrect lack of Datum conversion in _int_matchsel()
The code used return (Selectivity) 0.0;where PG_RETURN_FLOAT8(0.0);would be correct.On 64-bit systems, these are pretty much equivalent, but on 32-bitsystems, PG_RETURN_FLOAT8() correctly produces a pointer, but the oldwrong code would return a null pointer, possibly leading to a crashelsewhere.We think this code is actually not reachable because bqarr_in won'taccept an empty query, and there is no other function that willcreate query_int values. But better be safe and not let suchincorrect code lie around.Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us>Discussion:https://www.postgresql.org/message-id/flat/8246d7ff-f4b7-4363-913e-827dadfeb145%40eisentraut.org
1 parentbba6a6f commit992a18f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎contrib/intarray/_int_selfuncs.c‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ _int_matchsel(PG_FUNCTION_ARGS)
177177
if (query->size==0)
178178
{
179179
ReleaseVariableStats(vardata);
180-
return (Selectivity)0.0;
180+
PG_RETURN_FLOAT8(0.0);
181181
}
182182

183183
/*

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp