diff options
author | Julius Goryavsky <julius.goryavsky@mariadb.com> | 2023-05-12 02:46:42 +0200 |
---|---|---|
committer | Julius Goryavsky <julius.goryavsky@mariadb.com> | 2023-05-12 02:48:15 +0200 |
commit | 3a7b3113505b317f8f1288d18dd0fa19a6ac360a (patch) | |
tree | 36e5ae6ddb1d13f226296f1dab477273d07197aa | |
parent | 28eaf66e18fbb2fc15c20c14f835c7c276c35cb2 (diff) | |
download | mariadb-git-3a7b3113505b317f8f1288d18dd0fa19a6ac360a.tar.gz |
MDEV-30388 correction: fix compilation error
-rw-r--r-- | sql/sql_table.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ |