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

46 results 16 ms in manticoresoftware/manticoresearch-go

Whether to support go native SQL driver database/sql or gorm

Whether to support go native SQL driver database/sql or gorm

medivh666medivh666 · 2025-02-14 · 1 · #16

waiting

fix: update ID fields to use uint64 instead of int64

kperreaukperreau · 2025-07-03 · 1 · #21

We've fixed this issue by updating the OpenAPI schema we use for generating the client (https://github.com/manticoresoftware/manticoresearch-go/commit/32c2c8e3f4d5fa09108086c1616ffcc7132b1f16), so we close this PR

Nick-S-2018Nick-S-2018 · 2025-07-03

Aggregation request returns incorrect results

Bug Description: The following SQL agg request cannot be correctly reproduced with the Go client CREATE TABLE IF NOT EXISTS apps ( id bigint, typeID int, title string attribute indexed ); INSERT INTO apps (ID, TypeID, Title) VALUES (1,1,'First'), (2,1,' …

Nick-S-2018Nick-S-2018 · 2025-06-13 · 0 · #22

bug

Facet over histogram

arrayindex-devarrayindex-dev · 2025-05-14 · 2 · #12

est::size_S

@arrayindex-dev I believe only using the sql method - https://github.com/manticoresoftware/manticoresearch-go/blob/dev/docs/UtilsAPI.md#sql We'll see what we can do to support it natively in the client.

sanikolaevsanikolaev · 2024-12-19

Facet over histogram

arrayindex-devarrayindex-dev · 2025-05-14 · 2 · #12

est::size_S

Fixed in https://github.com/manticoresoftware/manticoresearch-go/commit/73ea6e824128dde81bc7b913fa283fd649585136

Nick-S-2018Nick-S-2018 · 2025-05-14

create field can't insert

zhangstar-hubzhangstar-hub · 2024-11-19 · 5 · #9

Pls provide more details: your versions: Manticore Go client your table schema more lines from your script to reproduce it locally

sanikolaevsanikolaev · 2024-10-29

create field can't insert

zhangstar-hubzhangstar-hub · 2024-11-19 · 5 · #9

@zhangstar-hub ^

sanikolaevsanikolaev · 2024-10-31

create field can't insert

zhangstar-hubzhangstar-hub · 2024-11-19 · 5 · #9

version: Manticore 6.3.6 manticoresearch-go v1.0.0 go 1.17 like this:apiClient.IndexAPI.Insert(context.Background()).InsertDocumentRequest(*indexReq).Execute() If the index does not exist, it will automatically create a table when I insert. However, if …

zhangstar-hubzhangstar-hub · 2024-11-04

create field can't insert

zhangstar-hubzhangstar-hub · 2024-11-19 · 5 · #9

@zhangstar-hub, sorry for the delay with this response. Yes, you're right, create cannot be used as a column name so you'll have to change it to something else. We'll update our documentation to include create into the list of reserved words.

Nick-S-2018Nick-S-2018 · 2024-11-13

create field can't insert

zhangstar-hubzhangstar-hub · 2024-11-19 · 5 · #9

We'll update our documentation to include create into the list of reserved words. Done in https://github.com/manticoresoftware/manticoresearch/commit/d8d6e7219c5fb53b414a4b84d74216760c5ec7f9

sanikolaevsanikolaev · 2024-11-19

`go get` fails for v6.0.0 due to module path version mismatch

yokowuyokowu · 2025-02-07 · 1 · #14

We've fixed documentation. It should read v1.6.0

Nick-S-2018Nick-S-2018 · 2025-02-07

How to get id of new documents create by bulk insert

ninesunqianninesunqian · 2025-01-08 · 4 · #13

waiting

You can find an example of the response which includes ids for all inserted documents here https://manual.manticoresearch.com/Data_creation_and_modification/Adding_documents_to_a_table/Adding_documents_to_a_real-time_table?client=JSON#Bulk-adding- …

sanikolaevsanikolaev · 2024-12-19

How to get id of new documents create by bulk insert

ninesunqianninesunqian · 2025-01-08 · 4 · #13

waiting

Sorry, please forgive me for not describing it clearly! I create docs by auto-id. The ids in build request are zero. Are ids in response created by manticore search ?

ninesunqianninesunqian · 2024-12-21

How to get id of new documents create by bulk insert

ninesunqianninesunqian · 2025-01-08 · 4 · #13

waiting

I create docs by auto-id. The ids in build request are zero Can you please provide a minimal reproducible example for this?

sanikolaevsanikolaev · 2024-12-23

How to get id of new documents create by bulk insert

ninesunqianninesunqian · 2025-01-08 · 4 · #13

waiting

Since there's no reproducible case, we are closing this issue. Feel free to reopen in case you can provide more details on how to reproduce the issue.

sanikolaevsanikolaev · 2025-01-08

Why the id in ApiPartialReplaceRequest is float32, not int64 ?

ninesunqianninesunqian · 2025-01-08 · 3 · #10

This is a bug in the client which we're going to fix in the near future.

Nick-S-2018Nick-S-2018 · 2024-12-05

Why the id in ApiPartialReplaceRequest is float32, not int64 ?

ninesunqianninesunqian · 2025-01-08 · 3 · #10

OK, Thanks very much. By the way, the way PartialReplace adding id and indexName is also different from other api. Can this be fixed as well?| For example: func (m *McsIndex) Insert(id int64, idea string, ts int64) error { indexDoc := map[string]interface …

ninesunqianninesunqian · 2024-12-05

Why the id in ApiPartialReplaceRequest is float32, not int64 ?

ninesunqianninesunqian · 2025-01-08 · 3 · #10

Handling id format is fixed in https://github.com/manticoresoftware/manticoresearch-go/commit/c2fb2fd00d8a53203eb015d1439d0ef91634d4d9 As for the issue about different method signature used for PartialReplace, this is caused by the different syntax of the …

Nick-S-2018Nick-S-2018 · 2025-01-08

fixbug:SearchRequest.Source field has wrong json tag

fpagyufpagyu · 2024-10-28 · 3 · #8

Thanks for the PR @fpagyu @Nick-S-2018 pls review.

sanikolaevsanikolaev · 2024-09-19

fixbug:SearchRequest.Source field has wrong json tag

fpagyufpagyu · 2024-10-28 · 3 · #8

@fpagyu Thank you for your PR. Now we're going to publish a major update for the client so we will include the fix for this issue as its part.

Nick-S-2018Nick-S-2018 · 2024-10-10

fixbug:SearchRequest.Source field has wrong json tag

fpagyufpagyu · 2024-10-28 · 3 · #8

Done in https://github.com/manticoresoftware/manticoresearch-go/commit/7423e7070df1bae0a592f9f84e38f06aab7021d3

Nick-S-2018Nick-S-2018 · 2024-10-28

new SearchResponseHitsHitsInner fails to serialize uppon request execute

adderlyadderly · 2025-03-11 · 1 · #20

Fixed in https://github.com/manticoresoftware/manticoresearch-go/commit/af9d9338984952270e4985227b3b16eb1dbb056a

Nick-S-2018Nick-S-2018 · 2025-03-11