Skip to content

Commit 6fc4419

Browse files
committed
fix test
1 parent 4f24e94 commit 6fc4419

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/utils/adt/dbsize.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ calculate_relation_size(Relation rel, ForkNumber forknum)
464464
return (*relation_size_hook) (rel, forknum);
465465

466466
/* Call into the tableam api if the table is not heap, i.e. AO/CO/PAX relations. */
467-
if (RelationIsNonblockRelation(rel))
467+
if (RelationIsAppendOptimized(rel))
468468
return table_relation_size(rel, forknum);
469469

470470
relationpath = relpathbackend(rel->rd_node, rel->rd_backend, forknum);

0 commit comments

Comments
 (0)