aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/cache/relcache.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/utils/cache/relcache.c')
-rw-r--r--src/backend/utils/cache/relcache.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/backend/utils/cache/relcache.c b/src/backend/utils/cache/relcache.c
index 0cdd30d15b1..8c9ebe0f6f8 100644
--- a/src/backend/utils/cache/relcache.c
+++ b/src/backend/utils/cache/relcache.c
@@ -3549,12 +3549,6 @@ RelationGetIndexExpressions(Relation relation)
*/
result = (List *) eval_const_expressions(NULL, (Node *) result);
- /*
- * Also mark any coercion format fields as "don't care", so that the
- * planner can match to both explicit and implicit coercions.
- */
- set_coercionform_dontcare((Node *) result);
-
/* May as well fix opfuncids too */
fix_opfuncids((Node *) result);
@@ -3621,12 +3615,6 @@ RelationGetIndexPredicate(Relation relation)
result = (List *) canonicalize_qual((Expr *) result);
- /*
- * Also mark any coercion format fields as "don't care", so that the
- * planner can match to both explicit and implicit coercions.
- */
- set_coercionform_dontcare((Node *) result);
-
/* Also convert to implicit-AND format */
result = make_ands_implicit((Expr *) result);