Skip to content
New issue

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

index creation failure msg, usage with collection not fully indexed #879

Merged
merged 9 commits into from
Feb 20, 2024
Prev Previous commit
Next Next commit
fix comments
  • Loading branch information
Yuqi-Du committed Feb 15, 2024
commit 234d1320fe2de35a08923f73adc02eb4cfbc9cbb
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,9 @@ public enum ErrorCode {
DRIVER_CLOSED_CONNECTION("Driver request connection is closed"),
NO_NODE_AVAILABLE("No node was available to execute the query"),
NO_INDEX_ERROR(
Yuqi-Du marked this conversation as resolved.
Show resolved Hide resolved
"The collection has indexes creation failure, recommend to recreate the collection"),
COLLECTION_CREATION_ERROR("Collection creation failure, recommend to recreate the collection");
"Collection creation failure (unable to create indexes). Recommend re-creating the collection"),
COLLECTION_CREATION_ERROR(
"Collection creation failure (unable to create table). Recommend re-creating the collection");

private final String message;

Expand Down
Loading