mariadb/storage
Sergei Golubchik d6add9a03d initial support for vector indexes
MDEV-33407 Parser support for vector indexes

The syntax is

  create table t1 (... vector index (v) ...);

limitation:
* v is a binary string and NOT NULL
* only one vector index per table
* temporary tables are not supported

MDEV-33404 Engine-independent indexes: subtable method

added support for so-called "high level indexes", they are not visible
to the storage engine, implemented on the sql level. For every such
an index in a table, say, t1, the server implicitly creates a second
table named, like, t1#i#05 (where "05" is the index number in t1).
This table has a fixed structure, no frm, not accessible directly,
doesn't go into the table cache, needs no MDLs.

MDEV-33406 basic optimizer support for k-NN searches

for a query like SELECT ... ORDER BY func() optimizer will use
item_func->part_of_sortkey() to decide what keys can be used
to resolve ORDER BY.
2024-11-05 14:00:48 -08:00
..
archive cleanup: remove unconditional #ifdef's 2024-11-05 14:00:47 -08:00
blackhole cleanup: key algorithm vs key flags 2024-11-05 14:00:47 -08:00
columnstore Merge '11.4' into 11.6 2024-10-03 15:59:20 +10:00
connect cleanup: remove unconditional #ifdef's 2024-11-05 14:00:47 -08:00
csv cleanup: key algorithm vs key flags 2024-11-05 14:00:47 -08:00
example cleanup: key algorithm vs key flags 2024-11-05 14:00:47 -08:00
federated cleanup: remove unconditional #ifdef's 2024-11-05 14:00:47 -08:00
federatedx cleanup: remove unconditional #ifdef's 2024-11-05 14:00:47 -08:00
heap cleanup: key algorithm vs key flags 2024-11-05 14:00:47 -08:00
innobase cleanup: generalize ER_INNODB_NO_FT_TEMP_TABLE 2024-11-05 14:00:48 -08:00
maria cleanup: thd->alloc<>() and thd->calloc<>() 2024-11-05 14:00:48 -08:00
mroonga initial support for vector indexes 2024-11-05 14:00:48 -08:00
myisam cleanup: thd->alloc<>() and thd->calloc<>() 2024-11-05 14:00:48 -08:00
myisammrg cleanup: thd->alloc<>() and thd->calloc<>() 2024-11-05 14:00:48 -08:00
oqgraph cleanup: init_tmp_table_share(bool thread_specific) 2024-11-05 14:00:48 -08:00
perfschema initial support for vector indexes 2024-11-05 14:00:48 -08:00
rocksdb cleanup: unused function argument 2024-11-05 14:00:48 -08:00
sequence MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
sphinx cleanup: remove unconditional #ifdef's 2024-11-05 14:00:47 -08:00
spider cleanup: thd->alloc<>() and thd->calloc<>() 2024-11-05 14:00:48 -08:00
test_sql_discovery MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00