Skip to content

Commit 1db4a9b

Browse files
committed
Fix gstat output for tables over 4GB in size
1 parent 102169b commit 1db4a9b

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
@@ -1129,7 +1129,7 @@ int gstat(Firebird::UtilSvc* uSvc)
11291129
}
11301130

11311131

1132-
const FB_SIZE_T tableSize = tddba->page_size * (
1132+
const FB_UINT64 tableSize = tddba->page_size * (
11331133
relation->rel_pointer_pages +
11341134
relation->rel_data_pages +
11351135
blobsTotal.blob_pages);

0 commit comments

Comments
 (0)