From 3817edd61d9474b88a5cb9da8694e2c44c0db9fb Mon Sep 17 00:00:00 2001 From: madschemas <155993105+MadSchemas@users.noreply.github.com> Date: Sat, 28 Dec 2024 11:41:31 +0300 Subject: [PATCH] [fix] Fix error message --- cpp_src/core/namespace/namespaceimpl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp_src/core/namespace/namespaceimpl.cc b/cpp_src/core/namespace/namespaceimpl.cc index 283e54596..ea747c6bd 100644 --- a/cpp_src/core/namespace/namespaceimpl.cc +++ b/cpp_src/core/namespace/namespaceimpl.cc @@ -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()) {