projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d9c5e96
)
Remove spurious return.
author
Andres Freund
<
[email protected]
>
Mon, 11 Mar 2019 22:03:27 +0000
(15:03 -0700)
committer
Andres Freund
<
[email protected]
>
Mon, 11 Mar 2019 22:04:00 +0000
(15:04 -0700)
Per buildfarm member anole.
Author: Andres Freund
src/include/access/tableam.h
patch
|
blob
|
blame
|
history
diff --git
a/src/include/access/tableam.h
b/src/include/access/tableam.h
index f2913b8cff9d7630f9887bc4f7fd6f717f079b06..50b8ab93539e5ec97cfdbef67ec2a2c96c72e930 100644
(file)
--- a/
src/include/access/tableam.h
+++ b/
src/include/access/tableam.h
@@
-398,7
+398,7
@@
extern TableScanDesc table_beginscan_parallel(Relation rel, ParallelTableScanDes
static inline void
table_parallelscan_reinitialize(Relation rel, ParallelTableScanDesc pscan)
{
- re
turn re
l->rd_tableam->parallelscan_reinitialize(rel, pscan);
+ rel->rd_tableam->parallelscan_reinitialize(rel, pscan);
}