Skip to content

Commit

Permalink
fix tutorials 11
Browse files Browse the repository at this point in the history
  • Loading branch information
xzdandy committed Jul 11, 2023
1 parent d9a10de commit c173caf
Show file tree
Hide file tree
Showing 2 changed files with 144 additions and 355 deletions.
2 changes: 1 addition & 1 deletion evadb/storage/image_storage_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def __init__(self, db: EvaDBDatabase):
super().__init__(db)

def read(self, table: TableCatalogEntry) -> Iterator[Batch]:
for image_files in self._rdb_handler.read(self._get_metadata_table(table), 12):
for image_files in self._rdb_handler.read(self._get_metadata_table(table)):
for _, (row_id, file_name) in image_files.iterrows():
system_file_name = self._xform_file_url_to_file_name(file_name)
image_file = Path(table.file_url) / system_file_name
Expand Down
Loading

0 comments on commit c173caf

Please sign in to comment.