From 3a7b3113505b317f8f1288d18dd0fa19a6ac360a Mon Sep 17 00:00:00 2001 From: Julius Goryavsky Date: Fri, 12 May 2023 02:46:42 +0200 Subject: [PATCH] MDEV-30388 correction: fix compilation error --- sql/sql_table.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/sql_table.h b/sql/sql_table.h index 2422f4dcb59..cf61ad6a4fa 100644 --- a/sql/sql_table.h +++ b/sql/sql_table.h @@ -286,7 +286,7 @@ extern mysql_mutex_t LOCK_gdl; bool check_engine(THD *, const char *, const char *, HA_CREATE_INFO *); #ifdef WITH_WSREP -bool wsrep_check_sequence(THD* thd, const sequence_definition *seq); +bool wsrep_check_sequence(THD* thd, const class sequence_definition *seq); #endif #endif /* SQL_TABLE_INCLUDED */