We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
listIndexes
listIndexes command will be a table level command that will return indexes for a table.
By default return only the index names. Request:
{ "listIndexes": {} }
Response:
{ "status": { "indexes": [ "name_idx", "content_idx" ] } }
If explain option is set to true return full index definition. Request:
explain
{ "listIndexes": { "options" : { "explain" : true } } }
{ "status": { "indexes": [ { "name": "name_idx", "definition": { "column": "name", "options": { "normalize": true, "ascii": true } } }, { "name": "content_idx", "definition": { "column": "content", "options": { "metric": "cosine", "sourceModel": "openai_v3_small" } } } ] } }
The text was updated successfully, but these errors were encountered:
maheshrajamani
Successfully merging a pull request may close this issue.
listIndexes
command will be a table level command that will return indexes for a table.By default return only the index names.
Request:
Response:
If
explain
option is set to true return full index definition.Request:
Response:
The text was updated successfully, but these errors were encountered: