diff --git a/doc/src/sgml/ddl.sgml b/doc/src/sgml/ddl.sgml index 013dc7c4dac..07bfc203ec7 100644 --- a/doc/src/sgml/ddl.sgml +++ b/doc/src/sgml/ddl.sgml @@ -2975,11 +2975,11 @@ ANALYZE measurement; Constraint exclusion only works when the query's WHERE - clause contains constants. A parameterized query will not be - optimized, since the planner cannot know which partitions the - parameter value might select at run time. For the same reason, - stable functions such as CURRENT_DATE - must be avoided. + clause contains constants (or externally supplied parameters). + For example, a comparison against a non-immutable function such as + CURRENT_TIMESTAMP cannot be optimized, since the + planner cannot know which partition the function value might fall + into at run time.