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

feat(tql): add initial support for start,stop,step as sql functions #3507

Merged
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
2cd9e39
feat(tql): add initial support for start,stop,step as sql functions
etolbakov Mar 13, 2024
bc1a549
fix(tql): remove unwraps, adjust fmt
etolbakov Mar 14, 2024
cd8b958
fix(tql): address taplo issue
etolbakov Mar 14, 2024
77cfa94
feat(tql): update parse_tql_query logic
etolbakov Mar 14, 2024
4d8711e
fix(tql): change query parsing logic to use parser instead of delimiter
etolbakov Mar 15, 2024
b665614
fix(tql): add timestamp function support, add sqlness tests
etolbakov Mar 17, 2024
26a4ab2
fix(tql): add lookback optional param for tql eval
etolbakov Mar 18, 2024
4bff8a5
fix(tql): adjust tests for now() function
etolbakov Mar 20, 2024
edafbe3
Merge branch 'main' into tql-start-stop-step-sql-functions-support
etolbakov Mar 20, 2024
d91c4e9
fix(tql): introduce the tqlerror to differentiate failures on parsing…
etolbakov Mar 21, 2024
b648e92
fix(tql): add tests for explain/analyze
etolbakov Mar 21, 2024
21f40ae
feat(tql): add lookback support for explain/analyze, update tests
etolbakov Mar 21, 2024
7d1d45b
Merge branch 'main' into tql-start-stop-step-sql-functions-support
etolbakov Mar 21, 2024
47a36de
feat(tql): add more sqlness tests
etolbakov Mar 22, 2024
bbac2f4
chore(tql): extract common logic for eval, analyze and explain into a…
etolbakov Mar 24, 2024
96fc4b9
feat(tql): address CR points
etolbakov Mar 26, 2024
fbdb7d0
Merge branch 'main' into tql-start-stop-step-sql-functions-support
etolbakov Mar 26, 2024
1281597
feat(tql): use snafu for tql errors, add more docs
etolbakov Mar 27, 2024
b59ffba
Merge branch 'main' into tql-start-stop-step-sql-functions-support
etolbakov Mar 27, 2024
368276b
feat(tql): address CR points
etolbakov Mar 27, 2024
1a611d8
Merge branch 'main' into tql-start-stop-step-sql-functions-support
etolbakov Mar 27, 2024
1abf153
Merge branch 'main' into tql-start-stop-step-sql-functions-support
etolbakov Mar 29, 2024
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
5 changes: 5 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions src/sql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,18 @@ workspace = true

[dependencies]
api.workspace = true
chrono.workspace = true
common-base.workspace = true
common-catalog.workspace = true
common-decimal.workspace = true
common-error.workspace = true
common-macro.workspace = true
common-query.workspace = true
common-time.workspace = true
datafusion.workspace = true
datafusion-common.workspace = true
datafusion-expr.workspace = true
datafusion-physical-expr.workspace = true
datafusion-sql.workspace = true
datatypes.workspace = true
hex = "0.4"
Expand Down
Loading