/* Copyright (c) 2014, 2024, Oracle and/or its affiliates. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2.0, as published by the Free Software Foundation. This program is designed to work with certain software (including but not limited to OpenSSL) that is licensed under separate terms, as designated in a particular file or component or in included license documentation. The authors of MySQL hereby grant you an additional permission to link the program and your derivative works with the separately licensed software that they have either included with the program or referenced in the documentation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License, version 2.0, for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef DD_TABLES__TABLESPACES_INCLUDED #define DD_TABLES__TABLESPACES_INCLUDED #include #include "sql/dd/impl/types/entity_object_table_impl.h" #include "sql/dd/string_type.h" #include "sql/dd/types/tablespace.h" namespace dd { class Global_name_key; class Raw_record; namespace tables { /////////////////////////////////////////////////////////////////////////// class Tablespaces : public Entity_object_table_impl { public: static const Tablespaces &instance(); enum enum_fields { FIELD_ID, FIELD_NAME, FIELD_OPTIONS, FIELD_SE_PRIVATE_DATA, FIELD_COMMENT, FIELD_ENGINE, FIELD_ENGINE_ATTRIBUTE, NUMBER_OF_FIELDS // Always keep this entry at the end of the enum }; enum enum_indexes { INDEX_PK_ID = static_cast(Common_index::PK_ID), INDEX_UK_NAME = static_cast(Common_index::UK_NAME) }; enum enum_foreign_keys {}; Tablespaces(); Tablespace *create_entity_object(const Raw_record &) const override; static bool update_object_key(Global_name_key *key, const String_type &tablespace_name); }; /////////////////////////////////////////////////////////////////////////// } // namespace tables } // namespace dd #endif // DD_TABLES__TABLESPACES_INCLUDED