File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -1951,7 +1951,7 @@ dacosd(PG_FUNCTION_ARGS)
1951
1951
if (arg1 < -1.0 || arg1 > 1.0 )
1952
1952
ereport (ERROR ,
1953
1953
(errcode (ERRCODE_NUMERIC_VALUE_OUT_OF_RANGE ),
1954
- errmsg ("input is out of range" )));
1954
+ errmsg ("input is out of [-1, 1] range" )));
1955
1955
1956
1956
if (arg1 >= 0.0 )
1957
1957
result = acosd_q1 (arg1 );
@@ -1986,7 +1986,7 @@ dasind(PG_FUNCTION_ARGS)
1986
1986
if (arg1 < -1.0 || arg1 > 1.0 )
1987
1987
ereport (ERROR ,
1988
1988
(errcode (ERRCODE_NUMERIC_VALUE_OUT_OF_RANGE ),
1989
- errmsg ("input is out of range" )));
1989
+ errmsg ("input is out of [-1, 1] range" )));
1990
1990
1991
1991
if (arg1 >= 0.0 )
1992
1992
result = asind_q1 (arg1 );
@@ -2500,7 +2500,6 @@ float8_combine(PG_FUNCTION_ARGS)
2500
2500
float8 N ,
2501
2501
sumX ,
2502
2502
sumX2 ;
2503
-
2504
2503
if (!AggCheckCallContext (fcinfo , NULL ))
2505
2504
elog (ERROR , "aggregate function called in non-aggregate context" );
2506
2505
You can’t perform that action at this time.
0 commit comments