Nick Sergeev
Nick Sergeev
The bug reported [here](https://github.com/manticoresoftware/manticoresearch-php/issues/96) can be reproduced with HTTP request as well. How to reproduce: - create an index with the following settings: `create table t(f text) index_exact_words='1' expand_keywords='1';` -...
We have implemented a benchmark for Manticore Search and would like to add it to BEIR. We would also greatly appreciate if you could add [the benchmark results](https://docs.google.com/spreadsheets/d/1_ZyYkPJ_K0st9FJBrjbZqX14nmCCPVlE_y3a_y5KkYI) we have...
We need to add a nightly test to be able to test the latest Manticore dev version with the latest Filebeat/Logstash. We can use info from https://www.elastic.co/guide/en/beats/filebeat/current/setup-repositories.html to detect current...
Currently daemon is not able to handle bulk requests correctly if they contain compressed data. Works fine: ``` # mysql -P9306 -h0 -e "drop table if exists t; create table...
### Bug Description: If a JSON object's key is a negative number and we use this key in a search filter, the search returns an empty result: ```bash curl localhost:9308/cli...
In some cases, when error data is a complex object that contains multiple properties, daemon does not pass them all to Buddy. `create table test(f text);` ``` curl -sX POST...
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...
Currently, Manticore cannot correctly detect a date passed as a string ( like `2019-03-23` ) and convert it to the corresponding timestamp. Instead, we just convert it to `0` or,...
To provide compatibility with our auto-generated OpenAPI clients, we should support an alternative format for the `/sql` POST request. The format we currently require is: ``` POST /sql -d "query={URL_ENCODED_QUERY}"...