aboutsummaryrefslogtreecommitdiff
path: root/contrib/postgres_fdw/postgres_fdw.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2014-01-04 13:48:50 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2014-01-04 13:48:50 -0500
commit9929975666904bcad6df5cb8fe73451fd4910621 (patch)
tree50ddfca5180b34ac6aa7e159c75e42ae36bc4345 /contrib/postgres_fdw/postgres_fdw.c
parent1a3e82a7f94e63979032ee84b2f8b0c93d441fbd (diff)
downloadpostgresql-9929975666904bcad6df5cb8fe73451fd4910621.tar.gz
postgresql-9929975666904bcad6df5cb8fe73451fd4910621.zip
Fix typo in comment.
classifyClauses was renamed to classifyConditions somewhere along the line, but this comment didn't get the memo. Ian Barwick
Diffstat (limited to 'contrib/postgres_fdw/postgres_fdw.c')
-rw-r--r--contrib/postgres_fdw/postgres_fdw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/postgres_fdw/postgres_fdw.c b/contrib/postgres_fdw/postgres_fdw.c
index 246a3a985b7..46ea0327c5e 100644
--- a/contrib/postgres_fdw/postgres_fdw.c
+++ b/contrib/postgres_fdw/postgres_fdw.c
@@ -723,7 +723,7 @@ postgresGetForeignPlan(PlannerInfo *root,
/*
* Separate the scan_clauses into those that can be executed remotely and
* those that can't. baserestrictinfo clauses that were previously
- * determined to be safe or unsafe by classifyClauses are shown in
+ * determined to be safe or unsafe by classifyConditions are shown in
* fpinfo->remote_conds and fpinfo->local_conds. Anything else in the
* scan_clauses list should be a join clause that was found safe by
* postgresGetForeignPaths.