Skip to content

Commit 1672adf

Browse files
committed
Fix gstat output for tables over 4GB in size
1 parent 7d82c19 commit 1672adf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utilities/gstat/dba.epp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1071,7 +1071,7 @@ int gstat(Firebird::UtilSvc* uSvc)
10711071
}
10721072

10731073

1074-
const FB_SIZE_T tableSize = tddba->page_size * (
1074+
const FB_UINT64 tableSize = tddba->page_size * (
10751075
relation->rel_pointer_pages +
10761076
relation->rel_data_pages +
10771077
blobsTotal.blob_pages);

0 commit comments

Comments
 (0)