Fix typo in comment.
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 4 Jan 2014 18:48:50 +0000 (13:48 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 4 Jan 2014 18:48:50 +0000 (13:48 -0500)
classifyClauses was renamed to classifyConditions somewhere along the
line, but this comment didn't get the memo.

Ian Barwick

contrib/postgres_fdw/postgres_fdw.c

index 246a3a985b77a36030cca6f198fd65febe18b4fc..46ea0327c5e1b8c650ffb218e2dd402a0130799a 100644 (file)
@@ -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.