-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #49 from quentingodeau/feature/hierarchical-namespace
Feature/hierarchical namespace
- Loading branch information
Showing
28 changed files
with
8,197 additions
and
452 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,20 @@ | ||
# Test data | ||
|
||
This directory contains test data that is uploaded to Azure tests servers in CI. What this means is that when adding | ||
files in this directory, the `test/sql/test_data_integrity.test` should be updated, otherwise CI will fail. | ||
files in this directory, the `test/sql/test_data_integrity.test` should be updated, otherwise CI will fail (see [gen_check_file script](../scripts/gen_check_file.sh)). | ||
|
||
## Partitioned | ||
|
||
Partitionned data has been add to test the integration of DFS storage account. | ||
|
||
Data has been generated from the `l.csv` source file with the following code: | ||
|
||
```sql | ||
COPY ( | ||
SELECT *, date_part('year', l_receiptdate) as l_receipmonth | ||
FROM './data/l.csv' | ||
WHERE l_receipmonth >= 1997 | ||
AND l_shipmode IN ('AIR', 'SHIP', 'TRUCK') | ||
) | ||
TO './data/partitioned' (FORMAT CSV, PARTITION_BY (l_receipmonth, l_shipmode), OVERWRITE_OR_IGNORE 1); | ||
``` |
Oops, something went wrong.