-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make transformer schema more flexible (#28)
* setup fugue sql * SQL: add basic extensions and tests * update * update * clean up sql files * fix syntax, add save load * add test for load * FugueSQLWorkflow * update version * Add pandas udf support, add SQL persist broadcast * update * update * update * update * update * make transformer schema more flexible
- Loading branch information
Han Wang
authored
Jun 13, 2020
1 parent
05ab46d
commit b709814
Showing
6 changed files
with
8 additions
and
15 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
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,4 +1,4 @@ | ||
triad>=0.3.5 | ||
triad>=0.3.6 | ||
adagio>=0.1.6 | ||
sqlalchemy | ||
|
||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
author_email="[email protected]", | ||
keywords="distributed spark dask sql dsl domain specific language", | ||
url="http://github.com/fugue-project/fugue", | ||
install_requires=["triad>=0.3.5", "adagio>=0.1.6", "sqlalchemy"], | ||
install_requires=["triad>=0.3.6", "adagio>=0.1.6", "sqlalchemy"], | ||
extras_require={ | ||
"sql": ["antlr4-python3-runtime", "jinjasql"], | ||
"spark": ["pyspark"], | ||
|