Skip to content
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

Substrait Installable Extension #3034

Merged
merged 27 commits into from
Feb 16, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
3666d5b
Adding substrait as a third party and script to update/gen substrait …
pdet Jan 31, 2022
59ef2a7
We dont really have to keep proto files, start of the substrait exten…
pdet Jan 31, 2022
ac3baa7
Mocking first substrait test
pdet Jan 31, 2022
6367bca
to_substrait works
pdet Feb 1, 2022
4730a2f
From substrait also working
pdet Feb 1, 2022
684e8d4
New git ignore
pdet Feb 2, 2022
8b11a91
Add compiled substrait at third_party
pdet Feb 2, 2022
d6dbcf5
Inlining Protobuf dependency
pdet Feb 2, 2022
dfb0a93
Protobuf License
pdet Feb 2, 2022
1c2b978
Adding substrait tests, Cross Product and CI
pdet Feb 2, 2022
94fa795
warning on protobuf
pdet Feb 2, 2022
007df45
Warning fixes on protobuf
pdet Feb 2, 2022
d34a2e9
Gcc doesnt know how to link libraries compiled on dif versions appare…
pdet Feb 3, 2022
ad77ddb
A lot of refactoring and memory leak fixing in the to_substrait trans…
pdet Feb 3, 2022
aeb8581
Fixing joins and case stmts for substrait
pdet Feb 3, 2022
f221562
Refactoring to_substrait
pdet Feb 4, 2022
4f355fb
Refactor of from_substrait
pdet Feb 4, 2022
6dcf9bc
from_substrait with multiple columns test
pdet Feb 4, 2022
316893c
Print call statement results
pdet Feb 7, 2022
a935d6c
Fighting the linker
pdet Feb 8, 2022
ebe511f
Trying to make windows happy
pdet Feb 9, 2022
1392113
Trying to make windows happy
pdet Feb 9, 2022
2418265
Clean up cmake
pdet Feb 10, 2022
662c6c1
Merge branch 'master' into substrait
pdet Feb 14, 2022
2a0b0dd
Am i missing this define?
pdet Feb 14, 2022
6ea3795
Merge branch 'master' into substrait
pdet Feb 15, 2022
a5836ee
More windows linking fixes
pdet Feb 15, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add compiled substrait at third_party
  • Loading branch information
pdet committed Feb 2, 2022
commit 8b11a91aa98a1f89307298054f750dbba2ee73f0
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,6 @@ io_file
*.lib

# Compiled protocol buffers
*.pb.h
*.pb.cc
*_pb2.py

# Compiled python
Expand Down
704 changes: 704 additions & 0 deletions third_party/substrait/substrait/capabilities.pb.cc

Large diffs are not rendered by default.

1,002 changes: 1,002 additions & 0 deletions third_party/substrait/substrait/capabilities.pb.h

Large diffs are not rendered by default.

14,818 changes: 14,818 additions & 0 deletions third_party/substrait/substrait/expression.pb.cc

Large diffs are not rendered by default.

18,033 changes: 18,033 additions & 0 deletions third_party/substrait/substrait/expression.pb.h

Large diffs are not rendered by default.

1,887 changes: 1,887 additions & 0 deletions third_party/substrait/substrait/extensions/extensions.pb.cc

Large diffs are not rendered by default.

1,966 changes: 1,966 additions & 0 deletions third_party/substrait/substrait/extensions/extensions.pb.h

Large diffs are not rendered by default.

4,316 changes: 4,316 additions & 0 deletions third_party/substrait/substrait/function.pb.cc

Large diffs are not rendered by default.

5,553 changes: 5,553 additions & 0 deletions third_party/substrait/substrait/function.pb.h

Large diffs are not rendered by default.

5,368 changes: 5,368 additions & 0 deletions third_party/substrait/substrait/parameterized_types.pb.cc

Large diffs are not rendered by default.

6,437 changes: 6,437 additions & 0 deletions third_party/substrait/substrait/parameterized_types.pb.h

Large diffs are not rendered by default.

Loading