-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bumps for prerelease 0.4.8a1 * requires password and database in motherduck credentials * identifies data writer by both file format and source item format, adds csv writer for arrow and object(wip) * adds postgres csv writer via COPY * improves arrow and parquet tests, adds arrow normalization edge cases * refactors extractors in extract, disables schema caches when processing multiple arrows * refactors item normalizers, adds arrow normalization, improves logging * removes internal file formats from loader file formats, renames, tests improvements * adds simple csv and postgres docs * closes writers on exceptions, passes metrics on exceptions, fixes some edge cases with empty arrow files * fixes empty tables writer tests and bugs * fixes closing writers when exception during flush, missing tzdata on windows handling * installs tzdata on windows ci * adds csv to docs index * fixes athena sql job client tests setup * adjusts for timezone for the preferred precision, all other precision use timestamp w/o tz * generates create table statements for synapse outside of a job * fixes athena table undefinded detection * generates all timestamps with timezones in parquet. tests workarounds in duckdb * fixes quoting in regular csv writer and force nulls in postgres copy job * finalizes the docs * renames jobs in tests so it is possible to select them as required
- Loading branch information
Showing
105 changed files
with
2,508 additions
and
955 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
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 |
---|---|---|
|
@@ -53,6 +53,18 @@ jobs: | |
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Install tzdata on windows | ||
run: | | ||
cd %USERPROFILE% | ||
curl https://data.iana.org/time-zones/releases/tzdata2021e.tar.gz --output tzdata.tar.gz | ||
mkdir tzdata | ||
tar --extract --file tzdata.tar.gz --directory tzdata | ||
mkdir %USERPROFILE%\Downloads\tzdata | ||
copy tzdata %USERPROFILE%\Downloads\tzdata | ||
curl https://raw.githubusercontent.com/unicode-org/cldr/master/common/supplemental/windowsZones.xml --output %USERPROFILE%\Downloads\tzdata\windowsZones.xml | ||
if: runner.os == 'Windows' | ||
shell: cmd | ||
|
||
- name: Install Poetry | ||
# https://github.com/snok/install-poetry#running-on-windows | ||
uses: snok/[email protected] | ||
|
@@ -136,7 +148,7 @@ jobs: | |
# shell: cmd | ||
|
||
matrix_job_required_check: | ||
name: Common tests | ||
name: common | common tests | ||
needs: run_common | ||
runs-on: ubuntu-latest | ||
if: always() | ||
|
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
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
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
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
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
Oops, something went wrong.