File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -120,14 +120,13 @@ def _select_query(
120
120
]
121
121
): # Scan range is only supported for uncompressed CSV/JSON, CSV (without quoted delimiters)
122
122
# and JSON objects (in LINES mode only)
123
- _logger .debug ("Scan ranges are not supported given provided input." )
124
123
scan_ranges = [None ] # type: ignore
125
124
126
125
return executor .map ( # type: ignore
127
126
_select_object_content ,
128
127
boto3_session ,
129
128
itertools .repeat (args ),
130
- scan_ranges ,
129
+ scan_ranges
131
130
)
132
131
133
132
@@ -279,4 +278,4 @@ def select_query(
279
278
arrow_kwargs = _data_types .pyarrow2pandas_defaults (use_threads = use_threads , kwargs = arrow_additional_kwargs )
280
279
executor = _get_executor (use_threads = use_threads )
281
280
tables = _flatten_list ([_select_query (path = path , executor = executor , ** select_kwargs ) for path in paths ])
282
- return _utils .table_refs_to_df (tables , kwargs = arrow_kwargs )
281
+ return _utils .table_refs_to_df (tables = tables , kwargs = arrow_kwargs )
You can’t perform that action at this time.
0 commit comments