-
Notifications
You must be signed in to change notification settings - Fork 11
Refactor OmniSci to Heavy #454
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
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
e46307c
Refactor omniscidb.py to havydb.py
tupui 6e23d05
Refactor omnisci_backend to heavyai and move tests to heavyai folder
tupui 09233b7
Refactor omnisci_xxx to heavyai/xxx
tupui 9a5e61d
Refactor externals/omniscidb to heavydb
tupui 86b2888
Refactor omnisci fixture
tupui d5fb5ac
Fix heavydbdb
tupui 8e20f59
Add omniscidb.py for smoother transition
tupui 7468cae
Revert wrong edit
tupui 4285033
Fix circular imports
tupui f6a3afc
Run heavyai tests in CI
tupui e48b5a3
Relative imports and improve warning message
tupui d911331
Merge branch 'master' into tupui/rebrand_omni_heavy
tupui b442990
Fix relative imports
tupui be419e7
Fix csv path in tests
tupui 2ae1cac
Merge remote-tracking branch 'upstream/master' into tupui/rebrand_omn…
tupui 60c60c1
Fix tests
tupui 7293693
[DO NOT MERGE] disable test that raises exception
guilhermeleobas 379d8d1
Fix global singleton
tupui File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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
File renamed without changes.
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| from .array import * # noqa: F401, F403 | ||
| from .column import * # noqa: F401, F403 | ||
| from .bytes import * # noqa: F401, F403 | ||
| from .metatype import * # noqa: F401, F403 | ||
| from .text_encoding import * # noqa: F401, F403 | ||
| from .pipeline import * # noqa: F401, F403 | ||
| from .column_list import * # noqa: F401, F403 | ||
| from .table_function_manager import * # noqa: F401, F403 | ||
|
|
||
| from . import mathimpl as math # noqa: F401 | ||
| from . import npyimpl as np # noqa: F401 | ||
| from . import python_operators as operators # noqa: F401 | ||
|
|
||
| # initialize the array api | ||
| from rbc.stdlib import array_api # noqa: F401 | ||
|
|
||
| __all__ = [s for s in dir() if not s.startswith('_')] |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
rbc/omnisci_backend/omnisci_pipeline.py → rbc/heavyai/pipeline.py
This file contains hidden or 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
2 changes: 1 addition & 1 deletion
2
rbc/omnisci_backend/python_operators.py → rbc/heavyai/python_operators.py
This file contains hidden or 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
File renamed without changes.
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
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.
However, let's leave this change to a follow-up PR when heavydb stuff from tests/test_externals_xyz.py is moved under tests/heavyai. @tupui could you open an issue for this task?
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.
Sure 👍