From 08384ddc716964b6cc36143bc56209f27e517c40 Mon Sep 17 00:00:00 2001 From: Brian Cloutier Date: Mon, 11 Jul 2016 20:05:47 +0300 Subject: [PATCH] cosmetic changes --- src/backend/distributed/planner/multi_router_planner.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/backend/distributed/planner/multi_router_planner.c b/src/backend/distributed/planner/multi_router_planner.c index cb093744d..be66e6067 100644 --- a/src/backend/distributed/planner/multi_router_planner.c +++ b/src/backend/distributed/planner/multi_router_planner.c @@ -260,10 +260,10 @@ ErrorIfModifyQueryNotSupported(Query *queryTree) /* reject queries which involve multi-row inserts */ if (hasValuesScan) { - /* - * if you remove this check you must also change the checks further in this + /* + * NB: If you remove this check you must also change the checks further in this * method and ensure that VOLATILE function calls aren't allowed in INSERT - * statements. Currently they're allowed, but the function call is replaced + * statements. Currently they're allowed but the function call is replaced * with a constant, and if you're inserting multiple rows at once the function * should return a different value for each row. */ @@ -548,8 +548,8 @@ MasterIrreducibleExpressionWalker(Node *expression, WalkerState *state) * Once you've added them to this check, make sure you also evaluate them in the * executor! */ - StaticAssertStmt(PG_VERSION_NUM <= 90599, "When porting to a newer PG this section" - " needs to be reviewed."); + StaticAssertStmt(PG_VERSION_NUM < 90600, "When porting to a newer PG this section" + " needs to be reviewed."); if (IsA(expression, OpExpr)) {