You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The function parquetAnalyzeForeignTable does not assign a value to totalpages. This is however needed for estimation (most notably in parquetGetForeignRelSize).
Proposed implementation (pseudocode):
total_byte_size = 0;
foreach pq_file in files do
total_byte_size += SumRowGroupSizes(pq_file);
end
*totalpages = total_byte_size / BLCKSZ;
The text was updated successfully, but these errors were encountered:
The function
parquetAnalyzeForeignTable
does not assign a value tototalpages
. This is however needed for estimation (most notably inparquetGetForeignRelSize
).Proposed implementation (pseudocode):
The text was updated successfully, but these errors were encountered: