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

10313 results 19 ms in manticoresoftware/manticoresearch

Create-table-like-existing-table-with-data

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

CREATE TABLE new_table LIKE existing_table WITH DATA

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

rel::upcomingest::size_Sbuddy_candidate

@sanikolaev JFY Import command performs copy itself. So we can skip 2nd step

djklim87djklim87 · 2024-04-24

Improvement of errors when renaming a distributed table different from RT

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

Extended quote and double quote functionality

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

est::NO_ESTIMATE

Supporting double quotes for inserts is not a big deal (probably just a one-line change). Supporting it in other cases (e.g. where match and string comparison) requires more work and better thinking. We need to decide whether we want to support double …

sanikolaevsanikolaev · 2024-05-20

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

CREATE TABLE new_table LIKE existing_table WITH DATA

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

rel::upcomingest::size_Sbuddy_candidate

Wait for review https://github.com/manticoresoftware/manticoresearch-buddy/pull/257

djklim87djklim87 · 2024-04-24

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

CREATE TABLE new_table LIKE existing_table WITH DATA

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

rel::upcomingest::size_Sbuddy_candidate

Done https://github.com/manticoresoftware/manticoresearch-buddy/commit/07968235e4190756e4b623a606a0c7f85b909ec3

djklim87djklim87 · 2024-04-26

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

CREATE TABLE new_table LIKE existing_table WITH DATA

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

rel::upcomingest::size_Sbuddy_candidate

Reopening to updated the docs.

sanikolaevsanikolaev · 2024-04-29

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

CREATE TABLE new_table LIKE existing_table WITH DATA

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

rel::upcomingest::size_Sbuddy_candidate

Done in PR https://github.com/manticoresoftware/manticoresearch/pull/2123

djklim87djklim87 · 2024-05-02

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

CREATE TABLE new_table LIKE existing_table WITH DATA

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

rel::upcomingest::size_Sbuddy_candidate

Pls update the docs. More in the PR

sanikolaevsanikolaev · 2024-05-02

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

CREATE TABLE new_table LIKE existing_table WITH DATA

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

rel::upcomingest::size_Sbuddy_candidate

Done

djklim87djklim87 · 2024-05-05

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

CREATE TABLE new_table LIKE existing_table WITH DATA

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

rel::upcomingest::size_Sbuddy_candidate

Reopening since: it seems to be not working on dev2: ysql> show version; ------------- how version ------------- -----------+--------------------------------+ Component | Version | -----------+--------------------------------+ Daemon | 6.2.13 694cbe53d@ …

sanikolaevsanikolaev · 2024-05-06

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

CREATE TABLE new_table LIKE existing_table WITH DATA

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

rel::upcomingest::size_Sbuddy_candidate

@PavelShilin89 we need to cover the new functionality with tests

djklim87djklim87 · 2024-05-06

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

CREATE TABLE new_table LIKE existing_table WITH DATA

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

rel::upcomingest::size_Sbuddy_candidate

Reopening since: * it seems to be not working on dev2: ``` mysql> show version; -------------- show version -------------- +-----------+--------------------------------+ | Component | Version | +-----------+--------------------------------+ | Daemon | 6.2 …

djklim87djklim87 · 2024-05-06

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

CREATE TABLE new_table LIKE existing_table WITH DATA

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

rel::upcomingest::size_Sbuddy_candidate

Fixed in 60c90e774faeb9d38b23ea8ab24919aad3bdd7c3 LGTM now.

sanikolaevsanikolaev · 2024-05-07

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

CREATE TABLE new_table LIKE existing_table WITH DATA

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

rel::upcomingest::size_Sbuddy_candidate

@djklim87 a case was seen in which a table with data could not be copied. Please note that the folder itself is created. root@68d3b57be072:/# echo "a > b" > /tmp/wf; mysql -P9306 -h0 -e "drop table if exists t; create table t(f text) wordforms='/tmp/wf'; …

PavelShilin89PavelShilin89 · 2024-05-07

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

CREATE TABLE new_table LIKE existing_table WITH DATA

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

rel::upcomingest::size_Sbuddy_candidate

case was seen in which a table with data could not be copied You probably meant the case of a table without data. Reassigned this issue to Klim.

sanikolaevsanikolaev · 2024-05-08

🆕 Update mcl version

Update mcl version to: 2.2.5 24051706 a915428 which includes: a915428 CI: bug fix in pack_publish.yml

githubmanticoregithubmanticore · 2024-05-17 · 1 · #2196

CREATE TABLE new_table LIKE existing_table WITH DATA

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

rel::upcomingest::size_Sbuddy_candidate

a case was seen in which a table with data could not be copied. Please note that the folder itself is created. at the moment on the initial table without data everything works. This case has a different problem, @djklim87 and I have already discussed it.

PavelShilin89PavelShilin89 · 2024-05-08

Split build and push stages for docker image

donhardmandonhardman · 2024-05-17 · 5 · #2194

CREATE TABLE new_table LIKE existing_table WITH DATA

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

rel::upcomingest::size_Sbuddy_candidate

at the moment on the initial table without data everything works Not working for me on dev2: snikolaev@dev2:~$ mysql -P9306 -h0 -e "drop table if exists t; create table t; drop table if exists t2; create table t2 like t with data; show table t2 status" …

sanikolaevsanikolaev · 2024-05-08

Update deps.txt to update MCL

sanikolaevsanikolaev · 2024-05-17 · 0 · #2195

CREATE TABLE new_table LIKE existing_table WITH DATA

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

rel::upcomingest::size_Sbuddy_candidate

Blocked by https://github.com/manticoresoftware/manticoresearch/issues/2154

djklim87djklim87 · 2024-05-08

🆕 Update backup version

Update backup version to: 1.3.7 24051609 2c8d9d9 which includes 2c8d9d9 Use external action to update deps and create pull request to manticoresearch b3da551 Do not use Buddy when we run tests due to currently it uses connections and also we do not need …

githubmanticoregithubmanticore · 2024-05-17 · 0 · #2187

CREATE TABLE new_table LIKE existing_table WITH DATA

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

rel::upcomingest::size_Sbuddy_candidate

Blocked by https://github.com/manticoresoftware/manticoresearch/issues/2154 Unblocked.

sanikolaevsanikolaev · 2024-05-10

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

CREATE TABLE new_table LIKE existing_table WITH DATA

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

rel::upcomingest::size_Sbuddy_candidate

Copying an empty table is still not working for me on the latest dev version: snikolaev@dev2:~$ mysql -P9306 -h0 -v Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1892 Server version: 6.2.13 db4442c8b@24051014 dev ( …

sanikolaevsanikolaev · 2024-05-10

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

CREATE TABLE new_table LIKE existing_table WITH DATA

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

rel::upcomingest::size_Sbuddy_candidate

Yes, it's correct. I didn't release my fixes yet

djklim87djklim87 · 2024-05-10