4534300030
[fix](Operator) RepeatNode does not handle empty expressions. ( #32112 )
...
In the past, RepeatNode did not handle empty expressions.
It used DCHECK to check if the expression was non-empty.
In non-debug mode, this caused _child_block to remain unprocessed, resulting in a deadlock.
Now, if the expression is empty, the output block directly outputs _child_block
2024-03-15 18:02:33 +08:00
473bd3ee64
[fix](function) incorrect result of eq_for_null ( #32103 )
2024-03-12 18:50:26 +08:00
4956d5de83
[fix](planner) remove input slot for aggregate slot which is not materialized ( #32092 )
...
introduced by #26886
run this sql:
SELECT
caseId
FROM
(
SELECT
caseId,
count(judgementDateId)
FROM
(
SELECT
abs(caseId) AS caseId,
id as judgementDateId
FROM
dr_user_test_t2
) AGG_RESULT
GROUP BY
caseId
) TOTAL
order by 1;
will get:
ERROR 1105 (HY000): errCode = 2, detailMessage = (172.17.0.1)[INTERNAL_ERROR]couldn't resolve slot descriptor 1, desc: tuples:
Tuple(id=5 slots=[Slot(id=10 type=DOUBLE col=-1, colname=, nullable=1), Slot(id=11 type=VARCHAR col=-1, colname=id, nullable=1)] has_varlen_slots=1)
Tuple(id=4 slots=[Slot(id=8 type=DOUBLE col=-1, colname=, nullable=1)] has_varlen_slots=0)
Tuple(id=2 slots=[Slot(id=4 type=DOUBLE col=-1, colname=caseId, nullable=1)] has_varlen_slots=0)
Tuple(id=0 slots=[Slot(id=0 type=VARCHAR col=-1, colname=caseId, nu
2024-03-12 18:50:26 +08:00
9bf22a872a
[Bug](fix) fix or and "<=>" cause coredump in query ( #31884 )
2024-03-07 16:53:19 +08:00
9af64d848f
[fix](pipelineX) fix error distribution in DistinctStreamingAggOperatorX ( #31804 )
2024-03-06 13:08:30 +08:00
acdc9575ad
[fix](function) incorrect result of 'equal_for_null' ( #30990 )
2024-02-18 11:50:16 +08:00
5e6e2f8061
[fix](nereids)should not infer predicate for nullaware anti-join ( #30924 )
2024-02-16 10:12:24 +08:00
3b85e3de1b
[fix](planner)avg function may use wrong decimal precision and scale ( #30364 )
2024-01-29 19:03:47 +08:00
24c0900b41
[fix](planner) should return outputTupleDesc's id instead of tupleIds if outputTupleDesc is set in Plan Node ( #30150 )
2024-01-23 10:09:54 +08:00
e5dea910bf
[feature](bitwise function) bit_count/bit_shift_left/bit_shift_right implementation ( #30046 )
2024-01-23 10:09:54 +08:00
115815739c
[bugfix](fe) add check for leg/lead function params ( #29617 )
2024-01-16 18:31:59 +08:00
2c44951543
[fix](planner)only allow null safe equal when both children are nullable ( #29470 )
2024-01-12 11:46:29 +08:00
4692a62e47
[fix](planner)nullable info of agg node's intermediate and output slots should be same ( #29315 )
2024-01-02 15:53:28 +08:00
c2c5df9341
[opt](assert_num_rows) support filter in AssertNumRows operator and fix some explain ( #28935 )
...
* NEED
* Update pipeline x
* fix pipelinex compile
2023-12-25 22:47:23 +08:00
b7ae7a07c7
[fix](join) incorrect result of left semi/anti join with empty build side ( #28898 )
2023-12-25 09:07:38 +08:00
d1cc6d9a85
[test](regression-test) order by decs should only make effect on its nearest column #28728
2023-12-20 19:06:41 +08:00
5739167142
[feature](window_function) support to secondary argument to ignore null values in first_value/last_value ( #27623 )
2023-11-30 09:56:43 +08:00
d9f6e51884
[fix](planner)output slot should be materialized as intermediate slot in agg node ( #27282 )
2023-11-23 18:41:08 +08:00
2ec3395087
[fix](planner)the data type should be the same between input slot and sort slot ( #27137 )
2023-11-23 18:40:02 +08:00
5b8aaf96d2
[fix](planner)scan node should project all required expr from parent node ( #26886 )
2023-11-23 09:44:21 +08:00
1ebb54afdc
[fix](null equal) fix coredump of pushing eq_for_null ( #27341 )
2023-11-21 18:36:33 +08:00
016dccb4b7
[fix](null_equal) fix wrong result and coredump of operator <=> ( #27312 )
...
* [fix](null_equal) fix wrong result and coredump of operator <=>
* fix
2023-11-21 14:32:03 +08:00
b42828cf69
[fix](window_function) min/max/sum/avg should be always nullable ( #27104 )
...
Co-authored-by: starocean999 <40539150+starocean999@users.noreply.github.com >
2023-11-18 18:41:42 +08:00
00896d8954
[fix](agg) fix coredump of multi distinct of decimal128I ( #27014 )
...
* [fix](agg) fix coredump of multi distinct of decimal128
* fix
2023-11-15 17:37:20 +08:00
fac1b2b192
[fix](planner)cast floating point type to bigint for bit functions ( #26598 )
2023-11-09 18:06:06 +08:00
9687932d57
[refactor](function) improve compoundPred optimization work with children is nullable ( #26160 )
...
before this optimization work has limit, it's children must not nullable.
2023-11-07 13:52:10 +08:00
958c7fdfd9
[fix](planner)should keep at least one slot materialized in agg node ( #26116 )
2023-10-31 16:52:45 +08:00
ea1554374c
[fix](multicast) fix DCHECK failure of block mem reuse for multicast ( #26127 )
...
* [fix](multicast) fix DCHECK failure of block mem reuse for multicast
2023-10-31 16:35:26 +08:00
47955f9109
[bug](intersect) fix intersect node nullable field should depend on _row_descriptor ( #26038 )
2023-10-28 22:39:36 +08:00
c715facafa
[fix](window_function) window function first_value/last_value should be always nullable ( #26014 )
2023-10-27 20:53:48 +08:00
bc606859c7
[enhancement](regression-test) add test for test_avg ( #25892 )
2023-10-26 14:33:49 +08:00
77bea97d40
[test](sync)add sync after insert in test case ( #25911 )
2023-10-26 09:11:25 +08:00
5d7e804a61
[fix](Nereids) check avg in correctness_p0 ( #25533 )
2023-10-20 14:12:06 +08:00
384fddb2ff
[test](case)add some debug log in mv case ( #25458 )
...
* [test](case)change the insert stmt in mv case
2023-10-17 11:04:45 +08:00
ef7d8aa99a
[fix](be)confix bug of converting outer join probe block to nullable ( #25492 )
...
_do_evaluate will add temp result column into original table block, so in order to only convert correct columns to be nullable, need call convert_block_to_null before _do_evaluate
2023-10-17 10:10:56 +08:00
e8431e1a97
[fix](planner)should not add TupleIsNullPredicate for inlineview plan ( #25338 )
2023-10-16 15:24:13 +08:00
2d19f2fbfe
[fix](planner)need call materializeSrcExpr for materialized slots in join node ( #25204 )
2023-10-11 16:34:53 +08:00
f1e948e5f4
[fix](planner)the common type of date and decimal should be double ( #24956 )
2023-10-07 11:27:19 +08:00
04bf9bce54
[fix](planner)update explode slot's nullable info in analyze phase ( #24879 )
2023-09-26 18:14:04 +08:00
35c0697a60
[fix](planner)SelectStmt's constructor should initialize originSelectList member ( #24755 )
...
resetSelectList method will use originSelectList to recover the origin select list. If the originSelectList is lost in constructor, the resetSelectList will fail to recover and make the analyze process fail.
2023-09-22 19:31:29 +08:00
c5e7f55b63
[performance](executor) optimize time_round function ( #23058 )
...
optimize time_round function
2023-09-15 10:49:22 +08:00
ccba5a729a
[fix](planner)cast string to float like type should return NULL literal if it fails ( #24222 )
2023-09-14 15:59:20 +08:00
21e30d4374
[fix](planner)ctas's query part is not analyzed correctly ( #24111 )
...
* [fix](planner)ctas's query part is not analyzed correctly
2023-09-09 20:55:09 +08:00
37b90021b7
[fix](planner)literal expr should do nothing in substituteImpl() method ( #23438 )
...
substitute a literal expr is pointless and wrong. This pr keep literal expr unchanged during substitute process
2023-08-25 11:21:35 +08:00
441a9fff6d
[fix](planner) fix now function param type error ( #23446 )
2023-08-25 00:12:21 +08:00
1b7d692d72
[fix](planner & nereids) convert to double if div decimal overflow ( #23272 )
2023-08-23 20:10:53 +08:00
78c6b115c3
[fix](planner)avg function need support large int param ( #23254 )
...
* [fix](planner)avg function need support large int param
2023-08-23 10:05:08 +08:00
a7771ea507
[fix](planner) fix current_timestamp param type mismatch when doing stream load ( #23092 )
...
FileLoadScanNode did not analyze the default value expr, result in target param type int32 become int8 as the original IntLiteral type.
2023-08-18 14:28:45 +08:00
e289e03a1a
[fix](executor)fix no return with old type in time_round
2023-08-17 15:34:26 +08:00
548226acfc
[fix](planner)shouldn't change the child type to assignmentCompatibleType if it's INVALID_TYPE ( #22841 )
...
if changing the child type to INVALID_TYPE, the later getBuiltinFunction call will fail
2023-08-11 17:14:49 +08:00