Skip to content

Commit bcebdaf

Browse files
committed
fix
1 parent d39e419 commit bcebdaf

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

datafusion-cli/tests/cli_integration.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -379,17 +379,15 @@ async fn test_s3_url_fallback() {
379379
// Create a table using a prefix path (without trailing slash)
380380
// This should trigger the fallback logic where head() fails on the prefix
381381
// 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
384383
STORED AS CSV
385384
LOCATION 's3://data/partitioned_csv'
386385
OPTIONS (
387386
'format.has_header' 'false'
388387
);
389388
390389
SELECT * FROM partitioned_data ORDER BY column_1, column_2 LIMIT 5;
391-
"#
392-
);
390+
"#;
393391

394392
assert_cmd_snapshot!(cli()
395393
.env_clear()

datafusion-cli/tests/snapshots/s3_url_fallback@s3_url_fallback.snap.new renamed to datafusion-cli/tests/snapshots/s3_url_fallback@s3_url_fallback.snap

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
source: datafusion-cli/tests/cli_integration.rs
3-
assertion_line: 396
43
info:
54
program: datafusion-cli
65
args: []

0 commit comments

Comments
 (0)