Skip to content

Releases: databendlabs/databend

v1.2.731-nightly

27 Apr 06:42
eb671da
Compare
Choose a tag to compare
v1.2.731-nightly Pre-release
Pre-release

What's Changed

Exciting New Features ✨

  • feat(query): support alter table/database refresh cache by @TCeason in #17841

Thoughtful Bug Fix 🔧

  • fix: Forward list operations to runtime to avoid hang by @Xuanwo in #17842
  • fix(query): align roles api with table functions by @everpcpc in #17843
  • fix: string Scalar should be escaped in sql_display by @youngsofun in #17854
  • fix: prevent log table from logging its own logs by @dqhl76 in #17802

Build/Testing/CI Infra Changes 🔌

Others 📒

  • chore:(query): support [SET | USE] CATALOG <catalog_name> by @TCeason in #17844
  • chore(query): alternative to tbl_name FROM db_name syntax is db_name.tbl_name by @TCeason in #17848

Full Changelog: v1.2.730-nightly...v1.2.731-nightly

v1.2.730-nightly

24 Apr 01:38
d92611d
Compare
Choose a tag to compare

What's Changed

Exciting New Features ✨

  • feat(query): support create iceberg table with partition and properties by @TCeason in #17812

Thoughtful Bug Fix 🔧

  • fix(query): Default catalog can not create iceberg table engine by @TCeason in #17837
  • fix: wrong calc of #rows of page in http handler. by @youngsofun in #17839

Build/Testing/CI Infra Changes 🔌

Others 📒

Full Changelog: v1.2.729-nightly...v1.2.730-nightly

v1.2.729-nightly

22 Apr 12:55
3ef2ce2
Compare
Choose a tag to compare
v1.2.729-nightly Pre-release
Pre-release

What's Changed

Build/Testing/CI Infra Changes 🔌

Others 📒

Full Changelog: v1.2.728-nightly...v1.2.729-nightly

v1.2.728-nightly

22 Apr 11:35
ba4a571
Compare
Choose a tag to compare
v1.2.728-nightly Pre-release
Pre-release

What's Changed

Others 📒

Full Changelog: v1.2.727-nightly...v1.2.728-nightly

v1.2.727-nightly

22 Apr 09:23
1d9c97b
Compare
Choose a tag to compare
v1.2.727-nightly Pre-release
Pre-release

What's Changed

Exciting New Features ✨

Thoughtful Bug Fix 🔧

Code Refactor 🎉

  • refactor(query): remove unsafe implementation of Send and Sync for AcquireQueueGuard by @drmingdrmer in #17818

Build/Testing/CI Infra Changes 🔌

Others 📒

Full Changelog: v1.2.726-nightly...v1.2.727-nightly

v1.2.726-nightly

21 Apr 02:14
389cbca
Compare
Choose a tag to compare
v1.2.726-nightly Pre-release
Pre-release

What's Changed

Exciting New Features ✨

Thoughtful Bug Fix 🔧

  • fix: Remove set nonblocking = false for mysql tcp stream by @Xuanwo in #17798

Code Refactor 🎉

  • refactor: Bump opendal to 0.53 for better metrics by @Xuanwo in #17788
  • refactor(fuse): runtime filter into two files: expr_bloom_filter.rs and expr_runtime_pruner.rs by @BohuTANG in #17804
  • refactor: move segment generation into TableMutationAggregator for MERGE INTO by @zhyass in #17800
  • refactor: upgrade min-meta-service-version to 1.2.677 by @drmingdrmer in #17783
  • refactor(query): auto generate virtual columns for variant column by @b41sh in #17707

Build/Testing/CI Infra Changes 🔌

Others 📒

  • chore(ci): change the sccache log level to debug by @forsaken628 in #17790
  • chore: Extracting databend_common_version to help improve compilation cache hit rate by @forsaken628 in #17801
  • chore: make databend_common_expression compilation cacheable by @forsaken628 in #17806
  • chore(ci): add ci test_stateless_cluster_linux timeout minute to 18 by @TCeason in #17813

Full Changelog: v1.2.725-nightly...v1.2.726-nightly

v1.2.725

21 Apr 12:13
8d073f6
Compare
Choose a tag to compare

What's Changed

Exciting New Features ✨

Thoughtful Bug Fix 🔧

  • fix(query): fix WindowPartitionTopNExchange painc with an empty block by @forsaken628 in #17453
  • fix(parser): allow timestamp as a function name by @forsaken628 in #17455
  • fix(query): fix order by derived column with limit return wrong values by @b41sh in #17457
  • fix(query): fold constant subquery to build filter plan instead of join plan by @b41sh in #17448
  • fix(query): fix left semi optimize to inner join by @sundy-li in #17458
  • fix(query): fix bind internal column by @b41sh in #17463
  • fix(query): spill config should be mask by @forsaken628 in #17467
  • fix(query): fix variant get string function auto cast null to SQL NULL by @b41sh in #17466
  • fix: InterpreterMetrics could subtract with overflow by @forsaken628 in #17461
  • fix(query): fix stack overflow if excessive use of union all by @zhang2014 in #17475
  • fix: check table mutability in copy into by @dantengsky in #17480
  • fix: impl hive disable_table_info_refresh for hive to avoid error when show table status from by @BohuTANG in #17484
  • fix(binder): AggregateRewrite...
Read more

v1.2.725-nightly

16 Apr 15:09
25ee2d6
Compare
Choose a tag to compare
v1.2.725-nightly Pre-release
Pre-release

What's Changed

Exciting New Features ✨

  • feat(query): support date_between(date_part, startdate, enddate) by @TCeason in #17782

Thoughtful Bug Fix 🔧

Others 📒

  • chore: refine error handling in persistent log table by @dqhl76 in #17792

Full Changelog: v1.2.724-nightly...v1.2.725-nightly

v1.2.724-nightly

16 Apr 08:54
61bf3ef
Compare
Choose a tag to compare
v1.2.724-nightly Pre-release
Pre-release

What's Changed

Exciting New Features ✨

  • feat(meta-client): add cache crate for databend-meta service by @drmingdrmer in #17766
  • feat(query): table_statistics(<database_name>[, table_name]) table functions by @BohuTANG in #17781
  • feat(query): support cluster level concurrent limit by @zhang2014 in #17778

Thoughtful Bug Fix 🔧

Code Refactor 🎉

  • refactor: DecimalSumState overflow handling in SUM aggregation by @dantengsky in #17773
  • refactor(optimizer): refine the tpcds tests by @BohuTANG in #17777
  • refactor(query): Combining TransformSortMergeLimit, TransformSortMerge, and TransformSortSpill by @forsaken628 in #17762
  • refactor: add query_profile and query_details persistent log tables by @dqhl76 in #17702

Build/Testing/CI Infra Changes 🔌

Others 📒

Full Changelog: v1.2.723-nightly...v1.2.724-nightly

v1.2.723-nightly

14 Apr 01:10
c57f022
Compare
Choose a tag to compare
v1.2.723-nightly Pre-release
Pre-release

What's Changed

Exciting New Features ✨

Thoughtful Bug Fix 🔧

  • fix: align EXPLAIN output with actual partition pruning statistics by @dqhl76 in #17491

Code Refactor 🎉

Others 📒

Full Changelog: v1.2.722-nightly...v1.2.723-nightly