Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
[SQL] Support for the CONVERT_TIMEZONE function
Signed-off-by: Mihai Budiu <mbudiu@feldera.com>
  • Loading branch information
mihaibudiu committed Apr 8, 2026
commit 771d6bfff124f859d2bd89225a50cc9e147b9fb0
66 changes: 23 additions & 43 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ bytestring = "1.4.0"
change-detection = "1.2"
cached = { version = "0.43.0", features = ["async"] }
chrono = { version = "0.4.43", default-features = false }
chrono-tz = { version = "0.10.4" }
circular-queue = "0.2.6"
clap = { version = "4.5", features = ["derive", "env"] }
clap_complete = "4.5"
Expand Down
2 changes: 2 additions & 0 deletions crates/sqllib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ base58 = { workspace = true }
base64 = { workspace = true }
blake3 = { workspace = true }
chrono = { workspace = true }
chrono-tz = { workspace = true }
dbsp = { workspace = true }
feldera-types = { workspace = true }
flate2 = { workspace = true }
Expand All @@ -33,6 +34,7 @@ like = { workspace = true }
md-5 = { workspace = true }
num = { workspace = true }
num-traits = { workspace = true, features = ["std"] }
once_cell = { workspace = true }
paste = { workspace = true }
quick_cache = { workspace = true, features = ["stats"] }
regex = { workspace = true }
Expand Down
Loading