Query Suggestion Options
Last word completion
Keyboard Layouts
GitHub

👀 While it's loading, feel free to check out the other repositories:

🔔 To get a notification when it's ready, leave your email here:

By entering your email, you agree to receive notifications and marketing-related emails

Filter by reset

45 results 98 ms in manticoresoftware/manticoresearch

JOIN: stored fields from the joined table

…'); select * from people left join surname on people.surname_id…-------------- select * from people left join surname on people.surname_id….surname from people left join surname on people.surname….surname from people left join surname on people.surname…

sanikolaevsanikolaev · 2024-05-23 · 1 · #1915

feature::joinrel::6.3.0

JOIN mem leak

…added to the join cache but the second one fails, causing a…j2; select count(*) from j1 join j2 on j1.sid=j2…

glookkaglookka · 2025-02-28 · 2 · #3042

bugrel::7.4.6

sql_joined_field charset

…of two tables, each with one line of Cyrillic text. utf8mb4…to use data from sql_joined_field in stored_fields, we…of Cyrillic from all sql_joined_field: Manticore 6.0.4…

madgreen1madgreen1 · 2023-07-13 · 9 · #1153

bug

Right joined table weight does not work in expressions

…match weight from the right joined table can be used in…join2.weight() from join1 inner join join2 on join1.string_id….weight()*2 from join1 inner join join2 on join1.string_id…

glookkaglookka · 2025-01-16 · 3 · #2919

bug

JOIN via JSON request

Proposal: We should implement a JOIN operation that can be executed…field with the specified values: { "join": [ { "table": "another table", "fields": ["source…

donhardmandonhardman · 2024-10-21 · 14 · #2208

est::size_Sfeature::join

Join issue when filtering by columnar attributes

Bug Description: Join does not return results if…of a left join no results are -- returned, despite one matching entry…) as test2 from join1 left join join2 on join1.string_id…

glookkaglookka · 2024-07-31 · 1 · #2342

bugfeature::joinrel::6.3.4

JOIN: wrong count(*)

…name, COUNT(*) FROM customers INNER JOIN orders ON customers.id = orders…> SELECT name FROM customers INNER JOIN orders ON customers.id = orders…

sanikolaevsanikolaev · 2024-06-26 · 1 · #2201

bugest::size_Sfeature::joinrel::6.3.2

where joined_table.id = 1 or joined_table.id = 2

select * from t inner join t2 on t.id = t2.…', 1); select * from t inner join t2 on t.id = t2…sec) -------------- select * from t inner join t2 on t.id = t2…() works: select * from t inner join t2 on t.id = t2…

sanikolaevsanikolaev · 2024-03-21 · 2 · #1978

bugest::size_Sfeature::join

JOIN performance issue

…sec: select * from test left join test2 on test.tid = test2…sec: select * from test left join test2 on test.tid = test2…. Data is in /home/ilya/join_perf/data.sql Manticore Search…

glookkaglookka · 2025-02-28 · 2 · #2995

bugrel::7.4.6

JOIN multiple tables

The task is to add support for joining multiple tables, so it's possible to execute queries like: select * from people left join names on people.name_id = names.id left join surnames on people.surname_id = surnames.id

sanikolaevsanikolaev · 2024-03-06 · 1 · #1916

est::size_Lfeature::join

Incorrect query result when JOIN batching is enabled

…| warning | table test: Join cache overflow detected; increase join_cache_size to…+----------------+-------------------------------------------------------------------------------------------+ select * from test left join test2 on test.tid = test2…

glookkaglookka · 2025-02-28 · 1 · #2996

bugrel::7.4.6

INNER/LEFT JOIN

…is to implement INNER/LEFT JOIN functionality with the following limitations…* from purchases AS p left join articles AS a ON a…

sanikolaevsanikolaev · 2024-07-17 · 15 · #1673

3👍3

est::size_XLrel::6.3.0

Implement batching inside a join query

Proposal: Currently join works by generating a query…are a lot of unique join conditions, this is very slow…. We could accumulate join conditions for several queries in…

glookkaglookka · 2025-01-23 · 8 · #2909

rel::7.0.0

sql_joined_field can't be stored

…sql_joined_field's name…select 1, 'abc' doc sql_joined_field = tag from query; select…1, 'joined' } index idx { path = idx…> select * from idx where match('joined'); ------ ------ ------ | id | doc | tag | ------ ------ ------ | 1…

sanikolaevsanikolaev · 2022-09-16 · 5 · #470

1👍1

bug

String equal in JOIN

…you support string match in join queries? I share my query…it. SELECT * FROM `programs` LEFT JOIN `program_infos` ON `programs`.id…

mitshmitsh · 2025-01-10 · 8 · #2287

waitingfeature::join

Adding avg() to select ... join leads to wrong results

…| +----------------------------------------------------------------------------------+----------+ Adding option join_batch_size=0 makes…by count(*) desc option join_batch_size=0"…

sanikolaevsanikolaev · 2025-02-26 · 6 · #2915

bug

Wrong FACET result with JOIN

…select * from movies inner join movies_liked on movies_liked…mysql> select * from movies inner join movies_liked on movies_liked…> select * from movies inner join movies_liked on movies_liked…> select * from movies inner join movies_liked on movies_liked…

sanikolaevsanikolaev · 2024-03-19 · 1 · #1949

bugfeature::join

Table join does not work when using two json attributes in condition

Bug Description: Table join does not work when json…left and right sides of join on condition. E.g. queries…like: select * from join1 left join join2 on join1.j.sort…

glookkaglookka · 2024-06-27 · 1 · #2335

bugrel::7.0.0feature::join

Add syntax to specify options for right joined table

…for the right table in JOIN statement. The suggestion is to…_name2": { ... } } When there's no join, options should look like this…

glookkaglookka · 2025-01-08 · 3 · #2803

bugrel::7.0.0est::size_S

searchd closed, when manually issue 'JOIN CLUSTER' following a pod failure.

…Was unable to manually issue 'JOIN CLUSTER' following a pod failure….com/t/when-a-node-joins-a-cluster-what-happens-if…to resync the files on JOIN'ing. So searchd was killed…local indexes, was able to join the cluster successfully. To Reproduce…

barryhunterbarryhunter · 2022-11-02 · 6 · #868

waitingwontfix