Skip to content

Commit

Permalink
[fix] Fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
MadSchemas committed Dec 28, 2024
1 parent d57ce79 commit 3817edd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp_src/core/namespace/namespaceimpl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -930,7 +930,7 @@ void NamespaceImpl::verifyUpdateIndex(const IndexDef& indexDef) const {
// Array may be converted to scalar and scalar to array only if there are no items in namespace
throw Error(
errParams,
"Cannot update index '%s' in namespace '%s'. Can't convert array index to not array and vice versa for non-empty namespace",
"Cannot update index '%s' in namespace '%s'. Can't convert array index to not array and vice versa in non-empty namespace",
indexDef.name_, name_);
}
if (indexDef.opts_.IsPK() && indexDef.opts_.IsArray()) {
Expand Down

0 comments on commit 3817edd

Please sign in to comment.