-
Notifications
You must be signed in to change notification settings - Fork 117
Tsaucer/prepare tpch examples for ci #710
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tsaucer/prepare tpch examples for ci #710
Conversation
This reverts commit cacefab.
…ker and also run unit tests
|
||
- name: Run TPC-H examples | ||
run: | | ||
cd examples/tpch |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the first line here should activate the venv
- name: Run TPC-H examples
run: |
source venv/bin/activate
cd examples/tpch
python convert_data_to_parquet.py
pytest _tests.py
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. I hadn't looked at how far it got before I had to step away for the day. I know I also need to add in the upload and download artifacts between stages.
…different containers
… we can just code the version of the data generator instead
It looks like CI is running correctly and also caching the data. I’ll rebase in the morning and get the PR ready to merge. |
Closing in favor of #711 |
Which issue does this PR close?
Closes #696.
Rationale for this change
This PR sets up a work flow to generate TPH-C 1Gb data set in CI, runs the 22 examples, and compares their results to the
known answer file. By adding this PR we improve the robustness of our test suite.
What changes are included in this PR?
This PR adds the following changes:
substring
operation that was missing. Sometime between 36.0.0 and 38.0.0substr
was performing the operation instead.Are there any user-facing changes?
substring
function is exposed in python.