9d9fcca40c
[regression-test](array)add test for array_slice ( #11329 )
2022-07-30 09:59:58 +08:00
c1fbee7fe1
[fix] the nullable info is lost in ifnull expr ( #11212 )
...
ifnull function has defect when processing nullable column or const column in some case
2022-07-29 21:33:58 +08:00
bac280e803
[Vectorized] Support both distinct and order by of group_concat ( #11278 )
...
Co-authored-by: lihaopeng <lihaopeng@baidu.com >
2022-07-29 09:11:34 +08:00
0b1d06bfd6
[Vectorized] Support order by aggregate function ( #11187 )
...
Co-authored-by: lihaopeng <lihaopeng@baidu.com >
2022-07-28 09:12:58 +08:00
5913c7c52c
[feature-wip](array-type) add function array_slice ( #11054 )
...
array_slice function returns a slice of the array.
2022-07-27 18:43:52 +08:00
a1599e3f6a
[regression test]update test_conditional_function ( #11244 )
2022-07-27 14:39:40 +08:00
6933f5e328
[fix] need materialize condition conlumn in if function ( #11229 )
2022-07-27 12:24:41 +08:00
2e210fb363
[bugfix]fix constant argument coredump ( #11200 )
2022-07-26 19:30:06 +08:00
93cb80c9cb
[test] use suffix of directory as group name and use directory as dbname ( #11142 )
...
* use suffix of directory as group name and use directory as dbname
We can rename tpcds_sf1 to tpcds_sf1_p1, then tpcds_sf1 will be in group
p1. We will group cases to p0, p1, p2, p3 in the future.
p0: function cases running in seconds.
p1: cases with expected out running in minutes, like tpcds_sf1
p2: cases with expected out running in hours, like tpcds_sf10 tpcds_sf100
p3: cases without without expected out to test core dump.
2022-07-25 12:10:31 +08:00
3744321f01
[feature-wip](array-type) add function array_union/array_except/array_intersect ( #10781 )
...
Add array_union/array_except/array_intersect function.
2022-07-22 13:50:13 +08:00
b115b362fb
[Bug] fix bug for function unix_timestamp ( #11041 )
...
* [Bug] fix bug for function `unix_timestamp`
2022-07-20 20:17:41 +08:00
95366de7f6
cast array element to same type ( #10980 )
...
Fix problem when there are element of different types in an array.
2022-07-19 21:47:10 +08:00
842ff2b1e2
[refactor] Refactor time LUT ( #10982 )
2022-07-19 08:23:29 +08:00
234e822b36
[Regression](Array) add more array test ( #10770 )
2022-07-18 15:27:13 +08:00
77ef19dbcd
[BugFix](Array)Fix using Array aggregate function caused be coredump ( #10649 )
2022-07-18 13:47:17 +08:00
2d5aca18fb
[feature-wip](array) add the array_sort function ( #10598 )
...
Co-authored-by: hucheng01 <hucheng01@baidu.com >
2022-07-18 10:52:42 +08:00
09d19e3f0f
[feature-wip](array-type) explode support more sub types ( #10673 )
...
1. explode support more sub types;
2. explode support nullable elements;
Co-authored-by: cambyzju <zhuxiaoli01@baidu.com >
2022-07-17 18:08:30 +08:00
5793cb11d0
[feature-wip] (array-type) function concat_ws support array ( #10749 )
...
Issue #10052
function concat_ws support array
2022-07-17 17:50:39 +08:00
cc84cfcc0e
[feature-wip](array-type) add function array_remove ( #10385 )
...
Description:
array_remove function remove all elements in array which is equal to the target.
2022-07-15 17:57:49 +08:00
eb079950cb
[feature-wip] (array-type) add the array_distinct function ( #10388 )
...
* add the array_distinct function
* add the support for decimal and update variable names
* add docs and regression test for array_distinct function
Co-authored-by: hucheng01 <hucheng01@baidu.com >
2022-07-12 17:02:42 +08:00
27505773f5
add regression test for array functions inside WHERE condition ( #10748 )
...
Co-authored-by: cambyzju <zhuxiaoli01@baidu.com >
2022-07-11 22:18:48 +08:00
fe8acdb268
[feature-wip](array-type) add agg function collect_list and collect_set ( #10606 )
...
add codes for collect_list and collect_set and update regression output, before output format for ARRAY(string) already changed.
Co-authored-by: cambyzju <zhuxiaoli01@baidu.com >
2022-07-08 12:48:46 +08:00
8012d63ea0
[fix] substr('', 1, 5) return empty string instead of null ( #10622 )
2022-07-06 22:51:02 +08:00
ec6620ae3e
[feature-wip](array-type) add function arrays_overlap ( #10233 )
2022-06-30 08:12:29 +08:00
69134fb3f2
[docs] Add regression test for weekday function ( #10253 )
2022-06-25 22:29:32 +08:00
fa13bef3da
[Bug][Vectorized] Fix coredump in other join conjunt is const expr ( #10223 )
...
Co-authored-by: lihaopeng <lihaopeng@baidu.com >
2022-06-23 13:27:32 +08:00
46d20818f1
[fix][vectorized] Fix bug the of window function result not match plan nullable ( #10340 )
...
Co-authored-by: lihaopeng <lihaopeng@baidu.com >
2022-06-23 08:40:12 +08:00
a2b5020375
[fix](partition-cache) fix result may not write when enable partition cache ( #10319 )
...
fix result may not write when enable partition cache
2022-06-22 23:42:46 +08:00
200557052a
[BUGFIX] wrong answer with with as + two phase agg ( #10303 )
2022-06-22 14:39:39 +08:00
2f37e108e3
[feature-wip](array-type) add ArrayType support for FeFunctions ( #10041 )
...
FEFunctionSignature do not support ArrayType as args, then following SQL failed:
`> select array_contains([1,2,3], 1);`
ERROR 1105 (HY000): errCode = 2, detailMessage = Unexpected exception: org.apache.doris.catalog.ArrayType cannot be cast to org.apache.doris.catalog.ScalarType
2022-06-20 09:35:06 +08:00
41b693e1df
[test] Add window cast bitmap digital_masking function regression test. ( #9924 )
2022-06-16 19:14:51 +08:00
495c34fa29
[Bug] [Vectorized] code dump on aggregate node over union node ( #10040 )
...
* miss check passthrough on vectorized
* format and add test
* update
2022-06-10 15:02:14 +08:00
4a474420c8
[feature](function) Add ntile function ( #9867 )
...
Add ntile function.
For non-vectorized-engine, I just implemented like Impala, rewrite ntile to row_number and count.
But for vectorized-engine, I implemented WindowFunctionNTile.
2022-06-10 10:32:40 +08:00
6fab1cbf3c
[feature-wip](array-type) Add array functions size and cardinality ( #9921 )
...
Co-authored-by: cambyzju <zhuxiaoli01@baidu.com >
2022-06-09 15:03:03 +08:00
688f8f6e90
[test] Fix date function regression test case. ( #9966 )
2022-06-09 00:33:35 +08:00
26ea51da00
[test]Add regression test method for agg function ( #9929 )
...
* Add regression test method for regression function
* Add regression test method for regression function
* Add regression test case for math function
* delete math function
Co-authored-by: manyi <fop@freeoneplus.com >
2022-06-04 13:31:48 +08:00
df3406da30
[test]add string sql functions test case ( #9904 )
...
* add string sql functions test case
* add like and regexp function case vectorized true
* Cancellation of Chinese language Test
* Cancel the Chinese test for the second time
2022-06-02 14:53:07 +08:00
0be1b0d242
[regressiontest]add json function test case ( #9917 )
2022-06-02 14:52:39 +08:00
7792aebd21
[test]add conditional function test case ( #9913 )
...
* add conditional function test case
* Update test_conditional_function.groovy
Delete useless code
* optimize the code
2022-06-02 14:52:03 +08:00
2ad38e6ab2
[regressiontest]add hash function test case ( #9918 )
2022-06-02 14:51:25 +08:00
f681c0891f
[regression test]add encryption function test case ( #9920 )
2022-06-02 14:47:32 +08:00
827b948d69
[test] Add datetime function test for regression test. ( #9897 )
...
* Modify export example in en and zh-cn doc.
* Add datetime function test for regression test.
* Add some invalid date to convert_tz
Co-authored-by: smallhibiscus <844981280>
2022-06-01 12:31:22 +08:00
2e0d05e0dc
[test]add gis function test case ( #9888 )
2022-06-01 08:12:34 +08:00
ec546e287b
[regressiontest]Adding Window Funnel function causes be crash for regression test ( #9889 )
2022-06-01 08:06:25 +08:00
7b98dd438d
[feature](function) Add nvl function ( #9726 )
2022-05-30 09:43:00 +08:00
6698f63dec
[fix](function) If function adds type inference ( #9728 )
2022-05-26 22:43:18 +08:00
2725127421
[fix] group by with two NULL rows after left join ( #9688 )
...
Co-authored-by: cambyzju <zhuxiaoli01@baidu.com >
2022-05-25 16:43:55 +08:00
500c36717d
[Bug-Fix][Vectorized] Full join return error result ( #9690 )
...
Co-authored-by: lihaopeng <lihaopeng@baidu.com >
2022-05-23 13:29:37 +08:00
0f9ef26576
[Bug] Fix timestamp_diff issue when timeunit is year and month ( #9574 )
2022-05-19 21:24:43 +08:00
7d9c25e718
[config] Remove some old config and session variable ( #9495 )
...
1. Remove session variable "enable_lateral_view"
2. Remove Fe config: enable_materialized_view
3. Remove Fe config: enable_create_sync_job
4. Fe config dynamic_partition_enable is only used for disable dynamic partition scheduler.
2022-05-17 22:37:11 +08:00