File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -379,17 +379,15 @@ async fn test_s3_url_fallback() {
379
379
// Create a table using a prefix path (without trailing slash)
380
380
// This should trigger the fallback logic where head() fails on the prefix
381
381
// and list() is used to discover the actual files
382
- let input = format ! (
383
- r#"CREATE EXTERNAL TABLE partitioned_data
382
+ let input = r#"CREATE EXTERNAL TABLE partitioned_data
384
383
STORED AS CSV
385
384
LOCATION 's3://data/partitioned_csv'
386
385
OPTIONS (
387
386
'format.has_header' 'false'
388
387
);
389
388
390
389
SELECT * FROM partitioned_data ORDER BY column_1, column_2 LIMIT 5;
391
- "#
392
- ) ;
390
+ "# ;
393
391
394
392
assert_cmd_snapshot ! ( cli( )
395
393
. env_clear( )
Original file line number Diff line number Diff line change 1
1
-- -
2
2
source : datafusion - cli / tests / cli_integration .rs
3
- assertion_line: 396
4
3
info :
5
4
program : datafusion - cli
6
5
args : []
You can’t perform that action at this time.
0 commit comments