Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/query/stream_schema_provider.rs
Original file line number Diff line number Diff line change
Expand Up @@ -339,13 +339,13 @@ impl StandardTableProvider {
mut file_path,
num_rows,
columns,
file_size,
ingestion_size,
..
} = file;

// Track billing metrics for files scanned in query
file_count += 1;
total_file_size += file_size;
total_file_size += ingestion_size;

// object_store::path::Path doesn't automatically deal with Windows path separators
// to do that, we are using from_absolute_path() which takes into consideration the underlying filesystem
Expand Down
Loading