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

1565 results 11 ms in manticoresoftware/manticoresearch

Error in log on Django connection

Bug Description: SELECT VERSION(), @@sql_mode, @@default_storage_engine, @@sql_auto_is_null, @@lower_case_table_names, CONVERT_TZ('2001-01-01 01:00:00', 'UTC', 'UTC') IS NOT NULL # error=P01: syntax error, unexpected IS near 'IS NOT NULL upon connection …

tarkhiltarkhil · 2024-05-20 · 0 · #2204

bug

Daemon returns different formats of error message

In some cases, daemon can return different formats of error message for the same operation. The returned format depends on a specific error. E.g., here are two responses for the insert request when daemon is used without Buddy: curl -X POST localhost:9308 …

Nick-S-2018Nick-S-2018 · 2024-05-20 · 10 · #1808

est::size_S

Improvement of errors when updating distributed table

At the moment when we try to update the table in non RT mode, we get no understandable errors. It would be great if the error would indicate that we are using the wrong table type. MRE mysql -v -h0 -P9306 -e "CREATE TABLE index1(f text, s string); CREATE …

PavelShilin89PavelShilin89 · 2024-05-20 · 0 · #2190

bug

Improvement of errors when renaming a RT table

When we try to rename a table in a mode other than RT, we get no understandable error. It would be nice if the error would indicate that we are using the wrong table type. MRE mysql -v -h0 -P9306 -e "CREATE TABLE index1(f text, s string); CREATE TABLE …

PavelShilin89PavelShilin89 · 2024-05-20 · 0 · #2191

bug

Thai chars are in the wrong charsets

Bug Description: I believe that Thai characters should be in the non_cjk charset, but not in cjk , because they use some kind of letters, but not logograms like Chinese. Currently I can see these Thai characters in cjk , chinese , japanese , korean …

maximiummaximium · 2024-05-20 · 8 · #2103

bugest::size_S

CREATE TABLE new_table LIKE existing_table WITH DATA

Manticore already supports CREATE TABLE new_table LIKE existing_table . Let's improve it, so it can copy a table with data by: Calling FREEZE against the existing table Copying the files Calling IMPORT TABLE Calling UNFREEZE Test it well in terms of …

sanikolaevsanikolaev · 2024-05-20 · 26 · #1788

rel::upcomingest::size_Sbuddy_candidate

Extended quote and double quote functionality

Proposal: When you use SQL mode in Manticore, single quotes are used to write string data, which are used when writing phrases "Isn't, Let's", etc. in such cases, backslash escaping is used. In classic SQL, there is a lifehack that consists in using …

anStalfanStalf · 2024-05-20 · 1 · #2133

est::NO_ESTIMATE

Can't import table with wordforms

Bug Description: Can't import table with wordforms echo "a > b" > /tmp/wf; mysql -h0 -P9306 -e "create table wftest(f text) wordforms='/tmp/wf'" mysql -h0 -P9306 -e "insert into wftest(id) values(1)" mysql -h0 -P9306 -e "import table t2 from '/var/lib/ …

djklim87djklim87 · 2024-05-20 · 8 · #2154

bugrel::upcomingdone

Escaping does not work with reserved keywords

Describe the bug Escaping does not work with reserved keywords in the query. To Reproduce Steps to reproduce the behavior: mysql> create table t(`year` int); mysql> create table t(`facet` int); mysql> create table t(`order` int); Expected behavior The …

Nick-S-2018Nick-S-2018 · 2024-05-20 · 2 · #1827

est::size_S

Allow spaces after comma in fieldlist

This: @(title, body) gives a fatal error, because only this is allowed @(title,body) This is very unintuitive and it is also not consistent with SQL, where adding spaces after field names does work (eg in insert queries). Request to allow spaces after …

cappadaancappadaan · 2024-05-20 · 1 · #1930

est::size_S

Float precision difference in arm64 vs x86_64

Tests are not passed on Mac ARM (perhaps not only on Mac) likely because of a rounding issue.

sanikolaevsanikolaev · 2024-05-20 · 3 · #1727

est::NO_ESTIMATE

Multi-query request gets stuck

Bug Description: The following request get stuck when executed via MySQL console: mysql> delimiter # mysql> show tables; show tables# If we execute the same request via HTTP API, an empty result is returned: curl localhost 9308/cli_json -d 'show tables; …

Nick-S-2018Nick-S-2018 · 2024-05-20 · 0 · #2165

bugest::size_S

Need INSERT IGNORE support

Hello Is it possible to add support for INSERT IGNORE? In my case, the index is constantly updated in real time, but sometimes full sync is needed. The problem is that at the time of bulk inserting (After TRUNCATE) - another processes insert records and I …

webigorkievwebigorkiev · 2024-05-20 · 7 · #838

1👍1

est::size_L

Poor work with plugin_dir and index_token_filter

Bug Description: There are several things which are looking more likely defects then features. If a table has non-empty index_token_filter , and is loaded with absent common section in the config, or absent plugin_dir param, daemon issue no messages about …

klirichekklirichek · 2024-05-20 · 2 · #2179

bugest::NO_ESTIMATE

searchd hangs on stop after FREEZE and FLUSH RAMCHUNK

Bug Description: If you start Manticore, FREEZE a table, attempt FLUSH RAMCHUNK and try to stop Manticore, it will hang. MRE: snikolaev@dev2:~$ mysql -P9315 -h0 -e "drop table if exists t; create table t; freeze t; flush ramchunk t;" …

sanikolaevsanikolaev · 2024-05-20 · 0 · #2184

bugest::size_S

Allow Buddy to exceed the max_connections configuration.

Proposal: We should implement the logic to allow Buddy to use its own connections without limitations. This means the max_connections parameter in the configuration should not affect Buddy, because it's the sidecar that should operate without external …

donhardmandonhardman · 2024-05-20 · 0 · #2197

est::size_S

Engine columnar crash with infinity core dump loop

Bug Description: UPDATE May 17 2024 Find MRE here https://github.com/manticoresoftware/manticoresearch/issues/2176#issuecomment-2116580344 Original description: When using the engine "columnar" im getting a core dump, problem is i couldnt find what really …

2peter32peter3 · 2024-05-20 · 9 · #2176

bug

Automatic embeddings generation

As discussed in https://forum.manticoresearch.com/t/search-for-similar-documents/1799/2 https://forum.manticoresearch.com/t/search-for-similar-documents/1799 , it's quite complicated to generate embeddings outside of Manticore Search. It would be great if …

sanikolaevsanikolaev · 2024-05-17 · 7 · #1778

2👍2

est::size_L

Possible issue with Buddy on Windows

Bug Description: We seem to have a peculiar issue while using Buddy on Windows. We should try to replicate it on another machine and validate if it's a localized issue or a more widespread problem. Due to the changes we've made in how we work with …

donhardmandonhardman · 2024-05-17 · 9 · #2116

bug

Implement Protection Flags for Tables and Clusters

We must add new flag functionalities to the Manticoresearch daemon to safeguard our sharded tables and internal clusters from unauthorized alterations. This enhancement will ensure that these crucial components are only modified through Buddy, thus …

donhardmandonhardman · 2024-05-17 · 11 · #1423