File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -922,7 +922,7 @@ execute(ForeignScanState *node, ExplainState *es)
922922 {
923923 MulticornBaseQual * qual = lfirst (lc );
924924 MulticornConstQual * newqual = NULL ;
925- bool isNull ;
925+ bool isNull = false ;
926926 ExprState * expr_state = NULL ;
927927
928928 switch (qual -> right_type )
Original file line number Diff line number Diff line change @@ -67,7 +67,6 @@ extractColumns(List *reltargetlist, List *restrictinfolist)
6767{
6868 ListCell * lc ;
6969 List * columns = NULL ;
70- int i = 0 ;
7170
7271 foreach (lc , reltargetlist )
7372 {
@@ -76,7 +75,6 @@ extractColumns(List *reltargetlist, List *restrictinfolist)
7675
7776 targetcolumns = pull_var_clause (node , PVC_RECURSE_AGGREGATES | PVC_RECURSE_PLACEHOLDERS );
7877 columns = list_union (columns , targetcolumns );
79- i ++ ;
8078 }
8179 foreach (lc , restrictinfolist )
8280 {
@@ -363,7 +361,7 @@ extractClauseFromOpExpr(
363361 /* Do not add it if it either contains a mutable function, or makes */
364362 /* self references in the right hand side. */
365363 if (!(contain_volatile_functions ((Node * ) right ) ||
366- bms_is_subset (base_relids ,
364+ bms_is_subset (base_relids ,
367365 pull_varnos (
368366#if PG_VERSION_NUM >= 140000
369367 root ,
You can’t perform that action at this time.
0 commit comments