From 8cd3d2d941aedb421eec49d28f078d3350b8744f Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Fri, 9 Feb 2018 18:37:36 +0100 Subject: [PATCH] fixes for ctags --- sql/field.h | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/sql/field.h b/sql/field.h index b30e8c718a8..8a9775cd9d5 100644 --- a/sql/field.h +++ b/sql/field.h @@ -46,6 +46,8 @@ class Item_func; class Item_bool_func; class Item_equal; class Virtual_tmp_table; +class Qualified_column_ident; +class Table_ident; enum enum_check_fields { @@ -4377,7 +4379,6 @@ public: bool resolve_type_refs(THD *); }; - /** This class is used during a stored routine or a trigger execution, at sp_rcontext::create() time. @@ -4399,8 +4400,8 @@ public: */ class Spvar_definition: public Column_definition { - class Qualified_column_ident *m_column_type_ref; // for %TYPE - class Table_ident *m_table_rowtype_ref; // for table%ROWTYPE + Qualified_column_ident *m_column_type_ref; // for %TYPE + Table_ident *m_table_rowtype_ref; // for table%ROWTYPE bool m_cursor_rowtype_ref; // for cursor%ROWTYPE uint m_cursor_rowtype_offset; // for cursor%ROWTYPE Row_definition_list *m_row_field_definitions; // for ROW @@ -4427,20 +4428,20 @@ public: bool is_column_type_ref() const { return m_column_type_ref != 0; } bool is_table_rowtype_ref() const { return m_table_rowtype_ref != 0; } bool is_cursor_rowtype_ref() const { return m_cursor_rowtype_ref; } - class Qualified_column_ident *column_type_ref() const + Qualified_column_ident *column_type_ref() const { return m_column_type_ref; } - void set_column_type_ref(class Qualified_column_ident *ref) + void set_column_type_ref(Qualified_column_ident *ref) { m_column_type_ref= ref; } - class Table_ident *table_rowtype_ref() const + Table_ident *table_rowtype_ref() const { return m_table_rowtype_ref; } - void set_table_rowtype_ref(class Table_ident *ref) + void set_table_rowtype_ref(Table_ident *ref) { DBUG_ASSERT(ref); set_handler(&type_handler_row);