db58104bc3
[fix](inverted index) Fix inverted index for MOR unique table #31051 ( #31354 )
2024-02-23 23:10:36 +08:00
ce892d04e5
[feature](index) Replace BITMAP INDEX with INVERTED INDEX ( #30950 )
2024-02-16 10:16:40 +08:00
b712f0b810
[improvement](index)add index_id column in show index stmt ( #30431 )
2024-01-30 15:32:42 +08:00
8c05f7a784
[refactor](cluster)(step-4) remove cluster related to Database ( #27861 )
...
Issue Number: #19897
Remove `default_cluster` prefix related to database.
When upgrading, all prefix will be removed.
2023-12-16 18:28:53 +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
b8c8e4ca96
[Fix](regression) fix wrong regression result ( #23944 )
2023-09-06 11:48:29 +08:00
d7f1a4fb9a
[Fix](inverted index) need_read_data only supports DUP_KEYS ( #23818 )
...
need_read_data optimization does not work properly when table is UNQIUE_KEY MOR
2023-09-05 19:57:22 +08:00
b656f31cf2
[Enchancement](compatible) show decimalv3 to decimal ( #21782 )
2023-07-18 09:17:14 +08:00
83ce4379ff
[regression] add order by in test case for stable output ( #21815 )
2023-07-14 18:01:43 +08:00
abc21f5d77
[bugfix](ngram bf index) process differently for normal bloom filter index and ngram bf index ( #21310 )
...
* process differently for normal bloom filter index and ngram bf index
* fix review comments for readbility
* add test case
* add testcase for delete condition
2023-07-13 17:31:45 +08:00
5506faa7b4
[datetimev2](minor) Add scale parameter for datetimev2 ( #21176 )
2023-06-27 19:55:35 +08:00
cc53391c9a
Revert "[feature](merge-on-write) enable merge on write by default (#… ( #21041 )
2023-06-21 18:36:46 +08:00
55ccddb62c
[Conf](decimalv3) enable decimalv3 by default
2023-05-29 15:38:31 +08:00
5167dc1251
[feature](merge-on-write) enable merge on write by default ( #19017 )
2023-05-11 11:10:48 +08:00
8a4a92f658
[Enchancement](compatible) show dateV2/datetimeV2 to date/datetime ( #18358 )
...
show dateV2/datetimeV2 to date/datetime
modify show create table
modify desc table
use desc table all to get real type from column ColumnType
2023-04-09 10:34:14 +08:00
e77833bfa1
[Bug](materialized-view) fix where clause persistence replay incorrect ( #18228 )
...
fix where clause persistence replay incorrect
2023-04-03 12:49:01 +08:00
151842a1fe
[feature](inverted index)WIP inverted index api: SQL syntax and metadata ( #13430 )
...
Introduce a SQL syntax for creating inverted index and related metadata changes.
```
-- create table with INVERTED index
CREATE TABLE httplogs (
ts datetime,
clientip varchar(20),
request string,
status smallint,
size int,
INDEX idx_size (size) USING INVERTED,
INDEX idx_status (status) USING INVERTED,
INDEX idx_clientip (clientip) USING INVERTED PROPERTIES("parser"="none")
)
DUPLICATE KEY(ts)
DISTRIBUTED BY RANDOM BUCKETS 10
-- add an INVERTED index to a table
CREATE INDEX idx_request ON httplogs(request) USING INVERTED PROPERTIES("parser"="english");
```
2022-11-08 23:46:53 +08:00
f294d33332
[bugfix](index) index page should not be bitshuffle decoded ( #12231 )
...
* [bugfix](index) index page should not be bitshuffle decoded
* minor change
2022-09-01 11:56:44 +08:00
d83c11a032
[regression](datev2) add schema change cases for datev2/datetimev2 ( #11924 )
2022-08-19 21:29:24 +08:00
ff1971f916
[improvement](test) add dryRun option and group all cases into either p0 or p1 ( #11576 )
...
1. add dryRun option to list tests
2. group all cases into p0 p1 p2
2022-08-17 22:45:53 +08:00