dedcfd7c28
[Doc] (Show) add doc for show create repository statement ( #18542 )
2023-04-14 09:44:54 +08:00
72236d2b08
[typo](docs) add row to column doc ( #18546 )
...
* [typo](docs) add row to column doc
2023-04-14 09:04:55 +08:00
281ceee3cc
[feature-wip](resource-group) Support resource group tvf ( #18519 )
...
related: #18098
2023-04-13 20:11:20 +08:00
2519931a04
[vectorized](function) support time_to_sec function ( #18354 )
...
support time_to_sec function
2023-04-13 19:31:12 +08:00
2f64a8b387
[feature](GEO)Support read/write WKB/EWKB to gis types ( #18526 )
...
Support mutual conversion from wkb and gis types.also compatible with EWKB format
https://cwiki.apache.org/confluence/display/DORIS/DSIP-033%3A+More+GEO+functions
2023-04-13 16:25:18 +08:00
f9c6d7791c
[typo](docs)Optimize SeaTunnel documentation ( #18584 )
2023-04-12 21:33:31 +08:00
0290f0f770
[doc](https) Add https certificate docs ( #18558 )
...
* add https certificate docs
* add version
* add version
* add version
2023-04-12 09:40:51 +08:00
5d876414b5
[typo](docs) add autobucket to sidebars ( #18453 )
2023-04-07 14:17:36 +08:00
759f1da32e
[Enhencement](Backends) add HostName filed in backends table and delete backends table in information_schema ( #18156 )
...
1. Add `HostName` field for `show backends` statement and `backends()` tvf.
2. delete the `backends` table in `information_schema` database
2023-04-07 08:30:42 +08:00
8b85c55117
[vectorized](function) Support array_shuffle and shuffle function. ( #18116 )
...
---------
Co-authored-by: zhangyu209 <zhangyu209@meituan.com >
2023-04-04 08:53:13 +08:00
961f5d1bb7
[feature](function)Add St_Angle/St_Azimuth function ( #18293 )
...
Add St_Angle/St_azimuth function:
St_Angle:
Enter three point, which represent two intersecting lines. Returns the angle between these lines. Point 2 and point 1 represent the first line and point 2 and point 3 represent the second line. The angle between these lines is in radians, in the range [0, 2pi). The angle is measured clockwise from the first line to the second line.
`
mysql> SELECT ST_Angle(ST_Point(1, 0),ST_Point(0, 0),ST_Point(0, 1));
+----------------------------------------------------------------------+
| st_angle(st_point(1.0, 0.0), st_point(0.0, 0.0), st_point(0.0, 1.0)) |
+----------------------------------------------------------------------+
| 4.71238898038469 |
+----------------------------------------------------------------------+
1 row in set (0.04 sec)
`
St_azimuth:
Enter two point, and returns the azimuth of the line segment formed by points 1 and 2. The azimuth is the angle in radians measured between the line from point 1 facing true North to the line segment from point 1 to point 2.
`
mysql> SELECT st_azimuth(ST_Point(0, 0),ST_Point(1, 0));
+----------------------------------------------------+
| st_azimuth(st_point(0.0, 0.0), st_point(1.0, 0.0)) |
+----------------------------------------------------+
| 1.5707963267948966 |
+----------------------------------------------------+
1 row in set (0.04 sec)
2023-04-03 13:01:59 +08:00
20b3bdb000
[vectorized](function) support array_first_index function ( #18175 )
...
mysql> select array_first_index(x->x+1>3, [2, 3, 4]);
+-------------------------------------------------------------------+
| array_first_index(array_map([x] -> x(0) + 1 > 3, ARRAY(2, 3, 4))) |
+-------------------------------------------------------------------+
| 2 |
+-------------------------------------------------------------------+
mysql> select array_first_index(x -> x is null, [null, 1, 2]);
+----------------------------------------------------------------------+
| array_first_index(array_map([x] -> x(0) IS NULL, ARRAY(NULL, 1, 2))) |
+----------------------------------------------------------------------+
| 1 |
+----------------------------------------------------------------------+
mysql> select array_first_index(x->power(x,2)>10, [1, 2, 3, 4]);
+---------------------------------------------------------------------------------+
| array_first_index(array_map([x] -> power(x(0), 2.0) > 10.0, ARRAY(1, 2, 3, 4))) |
+---------------------------------------------------------------------------------+
| 4 |
+---------------------------------------------------------------------------------+
2023-03-31 12:51:29 +08:00
525f15dddf
[vectorized](function) support array_sortby function ( #18071 )
2023-03-30 11:07:49 +08:00
012f7bd031
[feature](function)Add ST_Area function ( #18138 )
2023-03-28 19:36:09 +08:00
ee80c12815
[feature](json) add json_extract function ( #17808 )
2023-03-27 21:19:47 +08:00
bcf95cd920
[feature](function)Add ST_Angle_Sphere function ( #17919 )
2023-03-27 10:14:46 +08:00
5463ba6267
[doc](fqdn)fqdn and k8s doc ( #17318 )
2023-03-26 22:04:21 +08:00
360d3050bc
[Feature](array-function) Support array_reverse_sort function ( #17754 )
...
Co-authored-by: zhangyu209 <zhangyu209@meituan.com >
2023-03-25 21:58:11 +08:00
089a91ecd5
[vectorized](function) support array_exists lambda function ( #17931 )
...
Co-authored-by: zhangyu209 <zhangyu209@meituan.com >
2023-03-23 11:11:39 +08:00
4193884a32
[feature](array_zip) Support array_zip function ( #17696 )
2023-03-21 18:44:30 +08:00
dc284b62d9
[vectorized](function) support array_filter function ( #17832 )
2023-03-20 23:18:10 +08:00
5bd00626be
[doc](releasenote) 1.2.3 release note ( #17926 )
2023-03-19 15:01:29 +08:00
12d9d19366
[docs](Nereids) add nereids zh-CN docs ( #16743 )
2023-03-16 11:52:30 +08:00
85080ee3c3
[vectorized](function) support array_map function ( #17581 )
2023-03-15 10:51:29 +08:00
ff9e03e2bf
[Feature](add bitmap udaf) add the bitmap intersection and difference set for mixed calculation of udaf ( #15588 )
...
* Add the bitmap intersection and difference set for mixed calculation of udaf
Co-authored-by: zhangbinbin05 <zhangbinbin05@baidu.com >
2023-03-14 20:40:37 +08:00
c302fa2564
[Feature](array-function) Support array_pushfront function ( #17584 )
2023-03-13 14:26:02 +08:00
9b687026bd
[Doc](TLS) add doc for TLS connection ( #17683 )
2023-03-12 10:01:07 +08:00
e1bf9411de
[feature](array function) add support for array_enumerate_uniq ( #17541 )
...
add support for array_enumerate_uniq()
2023-03-10 10:20:49 +08:00
4ea0d6c5fa
[feature](array_function) add support for array_popfront ( #17416 )
2023-03-08 13:57:38 +08:00
b1d65f855d
[Feature](array-function) Support array_concat function ( #17436 )
2023-03-08 13:57:16 +08:00
ae916f7cb3
[docs](doc) Add docs for Apache Kyuubi ( #17481 )
...
* add kyuubi doc of zh-CN & en
2023-03-08 09:36:50 +08:00
9f088f6e90
[feature](json) add json_valid function ( #17247 )
...
add json_valid function
Signed-off-by: nextdreamblue <zxw520blue1@163.com >
2023-03-02 14:08:52 +08:00
b51ce415e7
[Feature](load) Add submitter and comments to load job ( #16878 )
...
* [Feature](load) Add submitter and comments to load job
2023-02-28 09:06:19 +08:00
2626995fc1
[Doc](Load)Add mysql load document ( #16483 )
...
* Add doc
* 1
* doc2
* review again
* fix comment
* fix comment
* format
* add recommand dir
* cleint --local-infile
* add streaming_load_max_mb
2023-02-27 13:25:34 +08:00
7470198df6
[Docs](docs) Organize http documents ( #16618 )
...
1. Organize http documents
2. Add http interface authentication for FE
3. Support https interface for FE
4. Provide authentication interface
5. Add http interface authentication for BE
6. Support https interface for BE
2023-02-24 15:17:01 +08:00
e65a061256
[Enhancement](datetimev2-enhance) support 'microseconds_add' function for datetimev2 ( #16970 )
...
support 'microseconds_add' function for datetimev2
2023-02-22 17:49:41 +08:00
51eb147711
fix inverted index doc typo and reorganize index related docs ( #16915 )
2023-02-22 15:15:10 +08:00
adc42600b4
[typo](docs)Modify some document label errors ( #16866 )
...
* [typo](docs)Modify some document label errors
* fix
2023-02-17 20:55:17 +08:00
262a2ea10d
[doc](point query) modify and refine docs ( #16735 )
2023-02-16 17:36:32 +08:00
bd3ea233f8
[doc](filecache) add file cache document ( #16649 )
2023-02-16 10:26:48 +08:00
040a715251
[docs](releasenote)1.2.2 release note ( #16766 )
2023-02-15 08:57:52 +08:00
89754eb200
[doc](inverted index) inverted index introduction and usage doc ( #16628 )
2023-02-14 00:04:49 +08:00
18fff8ec0a
[doc](dynamic-table) Add docs for dynamic-table ( #16669 )
2023-02-14 00:02:06 +08:00
a06baad7d7
[docs](docker) Add Run Docker cluster docs ( #16520 )
2023-02-10 14:07:07 +08:00
e6b0d94459
[enhancement][docs] add docs for newly added two compaction method ( #16529 ) ( #16530 )
...
Co-authored-by: yixiutt <102007456+yixiutt@users.noreply.github.com >
Co-authored-by: zhengyu <freeman.zhang1992@gmail.com >
Signed-off-by: freemandealer <freeman.zhang1992@gmail.com >
2023-02-09 09:07:33 +08:00
1deefd7f72
[typo](docs)Remove doris manager doc ( #16278 )
...
* [typo](docs)remove doris manager docs
* fix
2023-02-04 22:54:53 +08:00
c4e1c5c15a
[Docs](pipeline) Add doc of pipeline execution engine and remove vectorized-execution-engine ( #16310 )
...
Add doc of pipeline execution engine and remove vectorized-execution-engine
2023-02-01 23:57:18 +08:00
f9406234c6
[ComputeNode](Doc)Add document for compute node ( #15743 )
...
Issue Number: close #13144
2023-01-19 15:16:14 +08:00
d2a8b3fc1e
[doc](multi-catalog) fix some format and typo ( #15988 )
2023-01-17 20:22:17 +08:00
3cb7b2ea50
[refactor](doc) add first class category "lakehouse" for multi catalog and external table ( #15934 )
...
* [refactor](doc) add new first class catalog lakehouse for multi catalog and external table
I change the doc of multi-catalog and external table.
Now there will be a first-class category named "Lakehouse" in doc sidebar.
2023-01-16 09:27:02 +08:00