You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tracks why they are disabled, and how to enable them:
Functions:
sqrt: The generated input must be non-negative.
pow: The input types must be type-cast, if it's expected to be pow(numeric, numeric) rather than pow(double precision, double precision). Otherwise by default it binds literals to double precision, and outputs double precision which is incorrect.
Aggregations:
jsonb_object_agg: The generated field name must be non-null.
stddev_samp / var_samp: Both use sqrt.
approx_percentile. Not fully implemented yet. Needs within group.
The text was updated successfully, but these errors were encountered:
Tracks why they are disabled, and how to enable them:
Functions:
sqrt
: The generated input must be non-negative.pow
: The input types must be type-cast, if it's expected to bepow(numeric, numeric)
rather thanpow(double precision, double precision)
. Otherwise by default it binds literals todouble precision
, and outputsdouble precision
which is incorrect.Aggregations:
jsonb_object_agg
: The generated field name must be non-null.stddev_samp
/var_samp
: Both usesqrt
.approx_percentile
. Not fully implemented yet. Needswithin group
.The text was updated successfully, but these errors were encountered: