1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-03 15:22:11 +03:00

if ( rel->size <= 0 )

rel->size = compute_rel_size(rel);
This commit is contained in:
Vadim B. Mikheev
1997-06-10 07:55:47 +00:00
parent cbb4213af4
commit f4161503e6
2 changed files with 5 additions and 5 deletions

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/Attic/prune.c,v 1.2 1996/11/08 05:57:01 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/Attic/prune.c,v 1.3 1997/06/10 07:55:47 vadim Exp $
*
*-------------------------------------------------------------------------
*/
@@ -101,6 +101,7 @@ prune_rel_paths(List *rel_list)
foreach(x, rel_list) {
rel = (Rel*)lfirst(x);
rel->size = 0;
foreach(y, rel->pathlist) {
path = (Path*)lfirst(y);