1dcb99519d
[fix](move-memtable) use tuple desc from schema param for delta writer ( #31747 )
2024-03-06 13:08:30 +08:00
4f174c4fb9
[feature](function) Support for aggregate function foreach combiner ( #31526 )
2024-03-06 13:08:30 +08:00
7f3a666fac
[fix](planner) fix ifnull and nvl function with one parameters exception message anbugious ( #31808 )
...
When ifnull or nvl funtion have only one parameter, nereids planner would throw an exception and go back to
original planner/ Original planner get secend parameter directly without check, so it return unexpected error message
2024-03-06 13:08:30 +08:00
9af64d848f
[fix](pipelineX) fix error distribution in DistinctStreamingAggOperatorX ( #31804 )
2024-03-06 13:08:30 +08:00
3e1e6c8d76
[fix](cloud) Fix version_p0 run in cloud mode ( #31810 )
2024-03-06 13:08:04 +08:00
0f1cbcc86a
[refactor](jdbc catalog) split postgresql jdbc Executor ( #31730 )
2024-03-06 13:08:04 +08:00
2e9bd268cd
[improvement](jdbc catalog) support sqlserver timestamp type read ( #31805 )
2024-03-06 13:08:04 +08:00
aba58b0f7b
[test](Nereids) add grouping sets test ( #31675 )
...
Co-authored-by: feiniaofeiafei <moailing@selectdb.com >
2024-03-06 13:08:04 +08:00
1d2d0bd411
[fix](update) Update set value should consider sequence column ( #31626 )
...
When using update command to set column value, if the column is sequence column, the column 'DORIS_SEQUENCE_COL' should also be set to the same value.
2024-03-06 13:08:04 +08:00
679c7657f6
[fix](cloud) Fix regression case test_dynamic_partition run in cloud mode ( #31803 )
2024-03-06 13:08:04 +08:00
d94d2c65f6
[fix](Nereids) let OrToIn rewritten result have stable order ( #31731 )
2024-03-06 13:07:59 +08:00
c43bc8349f
[fix](move-memtable) free resources when fail to open stream ( #31762 )
2024-03-06 13:07:59 +08:00
1434d3983b
[enhancement](test) Test the unique model by modify a key type from TINYINT to other type ( #31713 )
2024-03-06 13:07:59 +08:00
2d6e975d5a
[fix](cast) fix wrong result while cast string to float ( #31781 )
...
Issue Number: close #31518
2024-03-06 13:07:59 +08:00
eea9b56f69
[fix](group commit) handle group commit create plan error ( #31757 )
2024-03-06 13:07:59 +08:00
7b51c4aaca
[chore](fe) Speed up fe-core checkstyle ( #31785 )
...
by excluding checkstyle-cachefile from auto clean
2024-03-06 13:07:59 +08:00
cc8112273e
[fix](mtmv) Avoiding the occurrence of null pointers in logs due to the deletion of MTMV ( #31722 )
2024-03-06 13:07:49 +08:00
808563470f
[pipelineX](debug) Refactor code and complete debug string ( #31733 )
2024-03-06 13:07:49 +08:00
300f25c392
[chore](ci) remove required of pipelinex ( #31806 )
2024-03-06 13:07:49 +08:00
c98e93edc3
[chore](ci) add back pipelinex in master ( #31799 )
2024-03-06 13:07:49 +08:00
97640ee0e8
[test](leading) add leading tpc-ds regression test cases ( #31681 )
...
Co-authored-by: libinfeng <libinfeng@selectdb.com >
2024-03-06 13:07:49 +08:00
f2bece23d8
[chore](ci) add back required to test ( #31795 )
2024-03-06 13:07:49 +08:00
a909bc36ee
[fix](jdbc catalog) Change Druid Pool dependency to version 1.2.5 ( #31783 )
2024-03-06 13:07:49 +08:00
d9943d0374
[chore](Nereids) change consumer rules name ( #31777 )
2024-03-06 13:07:49 +08:00
ad3308c8ab
[fix](hive) support partition prune for _HIVE_DEFAULT_PARTITION_ ( #31736 )
...
This PR #23026 support the partition prune for hive table with `_HIVE_DEFAULT_PARTITION`,
but it will always select partition with `_HIVE_DEFAULT_PARTITION`.
This PR #31613 support null partition for olap table's list partition, so we can treat `_HIVE_DEFAULT_PARTITION`
as null partition of hive table.
So this PR change the partition prune logic
2024-03-06 13:07:49 +08:00
9541fb2602
[chore](ci) remove required of pipelinex ( #31791 )
2024-03-06 13:07:49 +08:00
9d2e5f1c00
[feature](doris compose) doris compose use jdk 17 image ( #31775 )
2024-03-06 13:07:49 +08:00
11903d29a1
[fix](jdbc catalog) fix close abort in sqlserver ( #31718 )
2024-03-06 13:07:49 +08:00
ca59579bf6
fix](Nereids): support max_value in range partition ( #31721 )
2024-03-06 13:07:08 +08:00
7998da4691
[fix](cast) wrong result while cast const to double then to string ( #31657 )
...
Issue Number: close #31514
2024-03-06 13:06:27 +08:00
5ed3c7eeef
[opt](doc) update release verify ( #31773 )
2024-03-06 13:06:27 +08:00
2c26a308d1
[fix](broker-load) fix broker load statement type conversion failure ( #31746 )
...
Co-authored-by: Luwei <814383175@qq.com >
2024-03-06 13:06:27 +08:00
7c30cb20fd
[Fix](partial update) Fix partial update load false when schema includes auto increment column ( #31725 )
...
Problem:
When partially updating columns without specifying the auto-increment column, and the imported data contains new keys, an error stating the auto-increment column could not be found occurs.
Reason:
The logic for partial column updates does not account for new keys in auto-increment columns. Since auto-increment columns can be generated by the system, it's possible to omit this column data during import. However, partial column updates treat this as a regular column, expecting it to be nullable or have a default value for automatic filling, overlooking the fact that auto-increment columns can also be auto-filled. This oversight leads to the error.
Solution:
Incorporate a check for auto-increment columns into the partial column update logic, and include the logic for generating auto-increment column values in the process of completing partial updates.
2024-03-06 13:06:27 +08:00
2a1c00f180
[docs](kafka-connector) Add doris-kafka-connector usage documentation ( #31729 )
2024-03-06 13:06:26 +08:00
cca0773261
[feature](function) round function defaults to rounding normally
2024-03-06 13:06:26 +08:00
231768db0d
[Performance](exec) Support runtime filter in <=> join ( #31754 )
2024-03-06 13:06:26 +08:00
31a03e7183
[fix](cloud) Fix regression case test_nereids_row_policy run in cloud mode ( #31726 )
2024-03-06 13:06:06 +08:00
fa499cc200
[Enhencement](env) Checking Master branch must use JDK17 ( #31587 )
...
Add to check the JDK version in `env.sh`, and force master to use java 17 version
2024-03-06 13:05:58 +08:00
294cb1729d
[fix](feut) fix TabletRepairAndBalanceTest ( #31653 )
2024-03-06 13:05:31 +08:00
d7d8b4ee4a
[fix](fe) Fix NPE in FrontendServiceImpl.loadTxnCommit if table is dropped ( #31715 )
2024-03-06 13:05:31 +08:00
a26b1eeee7
[fix](connections) fix connection hang after too many connections ( #31594 )
...
Issue Number: close #31569
Fix fe connection hang after too high qps
After fix, the third SQL will return error instead of hang:
ERROR 1203 (HY000): #42000Too many connections
2024-03-06 13:05:22 +08:00
0c71b666d7
[Bug](resource) fix npe on Resource read from json ( #31723 )
...
fix npe on Resource read from json
2024-03-06 13:05:22 +08:00
25d1934289
[Feature](topn) support multiple topn filter on backend ( #31665 )
...
support multiple topn filter on backend
2024-03-06 13:05:22 +08:00
3777ffb43f
[enhancement](nereids)support null partition for list partition ( #31613 )
2024-03-06 13:05:22 +08:00
33c356e6d8
fix in stats estimation ( #31684 )
...
the valid in option should
! (op.min > expr.max or op.max < expr.min)
=============>
op.min <= expr.max and op.max >= expr.min
2024-03-06 13:04:54 +08:00
e2ebf9d566
[feature](Nereids) parallel output file ( #31623 )
...
legacy planner impl PR: #6539
2024-03-06 13:04:30 +08:00
a5b9127656
[refactor](jdbc catalog) split sqlserver jdbc executor ( #31679 )
2024-03-06 13:04:29 +08:00
8198a31563
[fix](testcases) make all auto partition P2 cases nonConcurrent ( #31708 ) ( #31821 )
...
make all auto partition P2 cases nonConcurrent
2024-03-06 09:12:02 +08:00
91efb6a43d
Revert "[fix](meta-tool) Fix compile meta tool ( #31457 )"
...
This reverts commit 60de835d48536977e25c1841f4eed6abb0f2a311.
2024-03-04 21:49:07 +08:00
792907ff89
doris-2.1.0-rc11
2024-03-04 18:15:17 +08:00