projects
/
postgres-xl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
66093fb
)
Remove unused variable from init_execution_state
author
Tomas Vondra
<
[email protected]
>
Fri, 12 Oct 2018 13:08:25 +0000
(15:08 +0200)
committer
Tomas Vondra
<
[email protected]
>
Fri, 12 Oct 2018 13:08:25 +0000
(15:08 +0200)
Another compiler warning gone.
src/backend/executor/functions.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/executor/functions.c
b/src/backend/executor/functions.c
index d2df03979ea0ee185725cc529074feef3bbf03a5..25c7f830f83719c62c53a8d7a84714da1397586a 100644
(file)
--- a/
src/backend/executor/functions.c
+++ b/
src/backend/executor/functions.c
@@
-490,7
+490,7
@@
init_execution_state(List *queryTree_list,
char *querysource = (char *) lfirst(lc3);
execution_state *firstes = NULL;
execution_state *preves = NULL;
- ListCell *lc2
, *lc4
;
+ ListCell *lc2;
foreach(lc2, qtlist)
{