From 07ef7b6583152c92f484a6f6f1d40e64aba536fa Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Tue, 10 Jun 2025 09:19:50 +0200 Subject: [PATCH] fix the error message --- plugin/type_assoc_array/sql_type_assoc_array.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/type_assoc_array/sql_type_assoc_array.h b/plugin/type_assoc_array/sql_type_assoc_array.h index 7f5cad625e0..40784c53dea 100644 --- a/plugin/type_assoc_array/sql_type_assoc_array.h +++ b/plugin/type_assoc_array/sql_type_assoc_array.h @@ -105,7 +105,7 @@ protected: */ if (unlikely(!item->is_explicit_name())) { - my_error(ER_NEED_NAMED_ASSOCIATION, MYF(0), def.get_name()); + my_error(ER_NEED_NAMED_ASSOCIATION, MYF(0), def.get_name().str); return true; }