-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Custom schema for SQL query visualization (#51)
* feat: duckdb to use connection pool * feat: fastapi to use middleware to only allow specific hosts * fix: upload view will no longer support SQL * feat: schema modal to have accordian components for adding new schemas * feat: schema to use a JSON format and query should be generated in backend * feat: add JWT, Custom TTLCache and table manipulation for custom schema * fix: cachetools in requirements file for FastAPI application * feat: sort imports using isort * fix: api code formatted using black * fix: function names as per pep8 * fix: minor changes and fixes in the api on names * feat: use a variable for specifying pool size * fix: remove trailing comma from Error throw in planToNode function * feat: use a separate function for setting token * feat: use append_pool method to add new connection instances to duckdb connection pool * fix: Merge conflicts and add docstrings * fix: npm package files * fix: api routing * fix: api testing functions * feat: add binary file to test validation * fix: vue unit testing * fix: cypress e2e testing * fix: cypress testing port * feat: cypress tests for custom schema * feat: add python tests for custom schema * fix: indentation in python docstrings * feat: use env variables and secrets * fix: python api test github ci * fix: github ci workflows * fix: explicit cast duckdb pool size * fix: use dotenv to access env variables in JS files * fix: dotenv in package.json * fix: vue no longer supports process * fix: correct secret name in workflows * fix: python lint
- Loading branch information
1 parent
e29b16c
commit bfdda28
Showing
36 changed files
with
2,862 additions
and
8,233 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
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 |
---|---|---|
|
@@ -135,3 +135,7 @@ dist-ssr | |
# substrait-js | ||
substrait-js | ||
*~ | ||
|
||
# databases | ||
*.db | ||
*.wal |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# db files | ||
*.db | ||
*.wal |
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.