Commit 47fd638
authored
Consolidate core_integration/datasource and rename parquet_source --> parquet_integration (#18226)
## Which issue does this PR close?
- related to #11210
## Rationale for this change
Running the following command
```shell
cargo test --test csv_schema_fix_test
```
Results in a 201 mb binary (and requires linking, etc) for only a few
tests
```shell
du -s -h target/debug/deps/csv_schema_fix_test-48507d40c6598e82
201M target/debug/deps/csv_schema_fix_test-48507d40c6598e82
```
Let's combine that into the existing core integration test to save CI
runner space and time
Also, I have been confused why the parquet integration tests are named
`parquet_source` (I think it is meant to mirror `ParquetSource` which is
confusing) so let's change that to something more discoverable
## What changes are included in this PR?
1. Consolidate core_integration/datasource
2. rename `parquet_source` --> `parquet_integration`
## Are these changes tested?
It is only tests. You can run the tests in the new location via
```shell
cargo test --test core_integration -- csv
```
## Are there any user-facing changes?
No, this is all internal test rearrangement1 parent 774b6fe commit 47fd638
File tree
4 files changed
+26
-0
lines changed- datafusion/core/tests
- datasource
4 files changed
+26
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
24 | 27 | | |
25 | 28 | | |
26 | 29 | | |
| |||
File renamed without changes.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
File renamed without changes.
0 commit comments