5e9e199ca0
[fix](doc) Add the usage example of bos to the documentation of s3 tvf ( #28899 )
2023-12-23 20:47:50 +08:00
0b9b1be1f1
[fix](function) Fix from_second functions overflow and wrong result ( #28685 )
2023-12-22 10:22:49 +08:00
2b2d3d0eb1
[fix](meta_scanner) fix meta_scanner process ColumnNullable ( #28711 )
2023-12-20 17:41:38 +08:00
08066a55f1
[Enhancement](auto-partition) change the behaviour when insert overwrite an auto partition table #28683
...
If we specific target partition(s) when inserting overwrite an auto partition table,
before:
could create new partition
now:
behalf just like non-auto partition table
2023-12-20 17:19:21 +08:00
15e31d74e3
[feature](expr) Support kill query by query_id ( #28530 )
...
Issue Number: open #28517
2023-12-19 18:18:40 +08:00
6503aaf7db
[feature](planner) allow HLL and QUANTILE_STATE types on duplicate and unique table ( #28546 )
2023-12-19 09:54:24 +08:00
8ca7bd8f98
[enhancement](bitmap)support bitmap type for non-key column in duplicate table ( #28392 )
2023-12-14 23:59:12 +08:00
4300fdce43
[feature](merge-on-write) enable merge-on-write by default again ( #28105 )
...
fix #27188 , #28096
2023-12-14 19:35:52 +08:00
b6e72d57c5
[Improvement](hms catalog) support show_create_database for hms catalog ( #28145 )
...
* [Improvement](hms catalog) support show_create_database for hms catalog
* update
2023-12-09 01:34:21 +08:00
cd108688c1
[Chore](docs)Fix job error docs ( #28127 )
2023-12-08 10:24:21 +08:00
25b90eb782
[Feature](function) support random int from specific range ( #28076 )
...
mysql> select rand(-20, -10);
+------------------+
| random(-20, -10) |
+------------------+
| -13 |
+------------------+
1 row in set (0.10 sec)
2023-12-08 10:15:25 +08:00
81a0f8c041
[Feature](function) support generating const values from tvf numbers ( #28051 )
...
If specified, got a column of constant. otherwise an incremental series like it always be.
mysql> select * from numbers("number" = "5", "const_value" = "-123");
+--------+
| number |
+--------+
| -123 |
| -123 |
| -123 |
| -123 |
| -123 |
+--------+
5 rows in set (0.11 sec)
2023-12-07 22:26:43 +08:00
8c79b86f5b
Revert "[feature](merge-on-write) enable merge-on-write by default ( #27188 )" ( #28096 )
...
This reverts commit 00c8bab84de8154052f9d323800b436cd0ad36e5.
2023-12-07 11:31:36 +08:00
00c8bab84d
[feature](merge-on-write) enable merge-on-write by default ( #27188 )
2023-12-06 21:06:58 +08:00
fa5096f510
[feature](analyze_cmd) add show-tablets-belong stmt for analyzing a batch of tablet-ids ( #27994 )
2023-12-06 15:59:00 +08:00
2e1ce758f1
[feature](function) support ip function ipv6numtostring(alias inet6_ntoa) ( #27342 )
2023-12-02 11:48:19 +08:00
83ed8d3cba
[Feat](Nereids) join hint support stage one ( #27378 )
...
support view as a independent unit of leading hint
add random test check of leading hint query
add more test with data of leading hint query
add random test check of distribute hint
2023-11-29 21:08:08 +08:00
3bc09e55f6
[Improvement](unset_variable) add docs for unset-variable stmt and update privilege check ( #27672 )
2023-11-29 10:30:18 +08:00
c7b9a32e3e
[improvement](show snapshot) show iceberg snapshot print summary info ( #27448 )
...
Iceberg's snapshot has summary information, but Doris did not display it. This patch fixes this issue.
2023-11-27 20:56:50 +08:00
6142a539f4
[deprecated](external) remove deprecated hudi and iceberg external table ( #27456 )
...
The creation of hudi and iceberg table is disallowed since v1.2.
All these features are covered by hudi/iceberg catalog.
We should remove the code in v2.1
The PR mainly changes:
1. remove the code of hudi/iceberg external table.
2. remove code of iceberg database.
3. disallowed hive external table's creation.
4. disabled odbc,mysql,broker external table by default, and add FE config `disable_odbc_mysql_broker_table` to control it
2023-11-24 23:18:07 +08:00
4b22fc14d5
[Feature](update) Support update on current_timestamp ( #25884 )
2023-11-23 16:23:31 +08:00
39663119ca
[minor](doc) Add sql manual for stats #27176
2023-11-22 13:15:42 +08:00
402095b85e
[doc](fix) fix date trunc doc ( #27317 )
2023-11-21 14:14:37 +08:00
334260dff7
[feature](function) support ip function ipv4stringtonum(ordefault, ornull), inet_aton ( #25510 )
2023-11-17 10:27:07 +08:00
0749d632c4
[feature](diagnose) diagnose for cluster balance ( #26085 )
2023-11-10 15:31:58 +08:00
7df60a4980
[Refactor](Tvf) delete some unused code of tvf and add doc for queries tvf ( #26460 )
...
1. delete some unused code of tvf
2. add doc for `queries` tvf: #25051
2023-11-09 09:06:09 +08:00
84b90abeeb
[typo](docs)Improve stream load document ( #25893 )
2023-11-06 23:23:45 +08:00
b99afcc7b5
[docs](x-load) Add table property min_load_replica_num doc ( #26333 )
2023-11-06 23:05:35 +08:00
b94e6d6c05
[doc](fix) update doc for rename column ( #25832 )
2023-11-01 11:30:03 +08:00
4eb9a52ace
[regression](s3load) Add regression testing and modify description text for s3load ( #25947 )
2023-11-01 07:39:16 +08:00
3eac2a75cb
[fix](docs) modify docs abort outfile and export ( #26033 )
2023-10-31 17:25:44 +08:00
0449a240f4
[Fix](from_unixtime) Keep consistent with MySQL & bug fix ( #25966 )
...
Bug fix: implicit convert from int32 -> int64 makes negative time stamp valid, so change signature to int64
Consistent: keep consistent with mysql.
2023-10-31 14:31:24 +08:00
365fdd2f4d
[feature](backup) add property to remove snapshot before creating repo ( #25847 )
...
Doris is not responsible for managing snapshots, but it needs to clear all
snapshots before doing backup/restore regression testing, so a property is
added to indicate that existing snapshots need to be cleared when creating a
repo.
In addition, a regression test case for backup/restore has been added.
2023-10-27 21:03:26 +08:00
3e21e4bdc2
[feature](CANCEL-ALTER-SYSTEM)decommission backend by ids ( #25441 )
...
Issue Number: close #23636
2023-10-25 19:49:38 +08:00
4f17c2a8b1
[feature](alter backends)backend modify & drop & decommission by ids ( #25444 )
2023-10-25 14:32:30 +08:00
4cd0dae4b3
[improvement](auth) support show all properties ( #25645 )
...
support `show all properties`
2023-10-24 17:27:59 +08:00
51bc49a727
[docs](truncate-table) load may fail when truncating table ( #25793 )
2023-10-24 14:10:26 +08:00
28c799ce35
[Docs](partial update) Fix a typo in docs in partial update for insert statement ( #25776 )
2023-10-23 17:54:47 +08:00
2353582493
[enhancement](load) support for broker load, routine load, mysql load and add docs ( #25528 )
...
cases will be added later.
2023-10-19 15:43:22 +08:00
0ec537edef
[fix](column-id) fix null conn ctx in column id flusher and parser for database field in corresponding show stmt ( #25393 )
2023-10-18 14:11:31 +08:00
85b8497624
[fix](Tvf) return empty set when tvf queries an empty file or an error uri ( #25280 )
...
### Before:
return errors when tvf queries an empty file or an error uri:
1. get parsed schema failed, empty csv file
2. Can not get first file, please check uri.
### Now:
we just return empty set when tvf queries an empty file or an error uri.
```sql
mysql> select * from s3(
"uri" = "https://error_uri/exp_1.csv ",
"s3.access_key"= "xx",
"s3.secret_key" = "yy",
"format" = "csv") limit 10;
Empty set (1.29 sec)
```
2023-10-17 09:52:53 +08:00
471cf2c48b
[improvement](auth) support show view priv ( #25370 )
...
Issue Number: close #xxx
current ,if user has select_priv or load_priv,he can show create table view_name,
but this is not safe,so add show_view_priv for show create table view_name
mysql SHOW VIEW description: https://dev.mysql.com/doc/refman/8.0/en/privileges-provided.html#priv_show-view
2023-10-14 22:37:51 +08:00
96f31ae9a7
[Docs](merge-on-write) Add more docs for partial update using native insert statement ( #25356 )
2023-10-13 14:48:51 +08:00
6757d2f361
Revert "[Enhancement](show-backends-disks) Add show backends disks ( #24229 )" ( #25389 )
...
This reverts commit 21223e65c59c23cfcb9e8ab610ea321168bcb75a.
2023-10-13 14:08:45 +08:00
11bbeb9a21
[Enhance](resource group)db support replication_allocation ( #25195 )
...
- db support replication_allocation,when create table,if not set `replication_num` or `replication_allocation `,will use it in db
- fix partition property will disappear when table partition is not null
2023-10-13 10:24:01 +08:00
21223e65c5
[Enhancement](show-backends-disks) Add show backends disks ( #24229 )
...
* Add statement to query disk information corresponding to data directory of BE node
[msyql]->'show backends disks;'
+-----------+-------------+------------------------------+---------+----------+---------------+-------------+-------------------+---------+
| BackendId | Host | RootPath | DirType | DiskState| TotalCapacity | UsedCapacity| AvailableCapacity | UsedPct |
+-----------+-------------+------------------------------+---------+----------+---------------+-------------+-------------------+---------+
| 10002 | 10.xx.xx.90 | /home/work/output/be/storage | STORAGE | ONLINE | 7.049 TB | 2.478 TB | 4.571 TB | 35.16 % |
| 10002 | 10.xx.xx.90 | /home/work/output/be | DEPLOY | ONLINE | 7.049 TB | 2.478 TB | 4.571 TB | 35.16 % |
| 10002 | 10.xx.xx.90 | /home/work/output/be/log | LOG | ONLINE | 7.049 TB | 2.478 TB | 4.571 TB | 35.16 % |
+-----------+-------------+------------------------------+---------+----------+---------------+-------------+-------------------+---------+
2023-10-12 20:24:45 +08:00
d1f59a4025
[fix](catalog)fix when modifying comments in property, it will modify the comments in the catalog ( #24857 )
...
- fix when modifying comments in property, it will modify the comments in the catalog
- add `alter catalog modify comment` to modify comment for catalog
- abstract some logic of `alter catalog` to parent class
2023-10-11 23:16:19 +08:00
004d3264a6
[typo](docs) add 'order by' when use 'limit m,n' ( #24236 )
2023-10-11 03:15:33 -05:00
62a6b132be
[Fix](func numbers) Remove backend_nums argument of numbers function ( #25200 )
2023-10-10 20:25:58 +08:00
934e9d5617
[typo](docs) Add example for create sql block rule ( #24754 )
2023-10-08 01:18:11 -05:00