Skip to content

Commit

Permalink
Add functional test related to bug #2850 (#2880)
Browse files Browse the repository at this point in the history
## Changes
Add a functional test that proves that #2850 is already fixed

### Linked issues
Resolves #2850

### Functionality
None

### Tests
- [x] added unit tests

Co-authored-by: Eric Vergnaud <eric.vergnaud@databricks.com>
  • Loading branch information
ericvergnaud and ericvergnaud authored Oct 9, 2024
1 parent cb5e6ef commit 577383d
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
df = (
spark.readStream.format('cloudFiles')
.option('cloudFiles.format', 'csv')
.option('cloudFiles.schemaLocation', '/Volumes/playground/test/schemas/')
.option('header', 'true')
.option('compression', 'gzip')
.load('/Volumes/playground/test/demo_data/')
)

0 comments on commit 577383d

Please sign in to comment.