Skip to content

Commit

Permalink
repr changes
Browse files Browse the repository at this point in the history
  • Loading branch information
samster25 committed Nov 14, 2023
1 parent 8ee7e82 commit 8221c1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion daft/iceberg/iceberg_scan.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def _make_scan_tasks(self) -> list[ScanTask]:
# TODO: Support ORC and AVRO when we can read it
raise NotImplementedError(f"{file_format} for iceberg not implemented!")

if (task.delete_files) > 0:
if len(task.delete_files) > 0:
raise NotImplementedError(f"Iceberg Merge-on-Read currently not supported, please make an issue!")

# TODO: Thread in PartitionSpec to each ScanTask: P1
Expand Down
2 changes: 1 addition & 1 deletion src/common/io-config/src/s3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ impl Display for S3Config {
self.key_id,
self.session_token,
self.access_key,
self.retry_initial_backoff_ms,
self.max_connections_per_io_thread,
self.retry_initial_backoff_ms,
self.connect_timeout_ms,
self.read_timeout_ms,
self.num_tries,
Expand Down

0 comments on commit 8221c1e

Please sign in to comment.