Skip to content

Tags: databendlabs/databend

Tags

v1.2.859-nightly

Toggle v1.2.859-nightly's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore(query): add aarch64 profile with optimization level 3 (#19105) * chore: perf opt level on v1.2.857-nightly * Add aarch64 profile with optimization level 3 Added a new profile for aarch64 with opt-level 3. --------- Co-authored-by: Winter Zhang <coswde@gmail.com>

v1.2.858-nightly

Toggle v1.2.858-nightly's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: rename body_format query_result_format. (#19132) 

v1.2.857-nightly

Toggle v1.2.857-nightly's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat(query): add create_query to /v1/catalog/list_database_tables (#1… …9099)

v1.2.856-nightly

Toggle v1.2.856-nightly's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: revert structured spill config (#19088) * chore: drop structured spill config * test: remove structured spill behavior it * test: fix configs_table_basic formatting * test: add trailing newlines for configs_table_basic

v1.2.855-nightly

Toggle v1.2.855-nightly's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
refactor: try reduce aggregate hash index cost on hot path (#19072) * improve * test: add a test to ensure cover all slots * chore: clean

v1.2.854-nightly

Toggle v1.2.854-nightly's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore(query): replace custom wrappers with intrinsics::assume (#19063) * chore(query): replace custom wrappers with intrinsics::assume * chore(query): replace custom wrappers with intrinsics::assume

v1.2.853-nightly

Toggle v1.2.853-nightly's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
ci: update database for benchmark (#19068) 

v1.2.852-nightly

Toggle v1.2.852-nightly's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: improve `explain perf` to support flag inlined function (#19042) * chore: post process frames after explain perf * ci: add a flag to allow skip trim debug info

v1.2.851-nightly

Toggle v1.2.851-nightly's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix(query): fix stack overflow errors thrown during serialization (#1… …9040)

v1.2.850-nightly

Toggle v1.2.850-nightly's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat(query): add DATE ± INTERVAL -> DATE function (#19022) * feat(query): add DATE ± INTERVAL -> DATE function - Added native DateType ± IntervalType -> DateType overloads so pure date math no longer casts through timestamp and reuses the existing day/month evaluators. - Taught the binder to inspect interval literals when binding +/-: if the interval has no time component we keep the date overload, otherwise we auto-cast to the timestamp overload * fix plus/minus