/* Copyright (c) 2015, 2016 Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. 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 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 SQL_FORMATTER_OPTIONS_INCLUDED #define SQL_FORMATTER_OPTIONS_INCLUDED #include "base/abstract_options_provider.h" #include "mysql_chain_element_options.h" #include #include "typelib.h" namespace Mysql{ namespace Tools{ namespace Dump{ enum enum_gtid_purged_mode { GTID_PURGED_OFF = 0, GTID_PURGED_AUTO = 1, GTID_PURGED_ON = 2 }; class Sql_formatter_options : public Mysql::Tools::Base::Options::Abstract_options_provider { public: Sql_formatter_options( const Mysql_chain_element_options* mysql_chain_element_options); void create_options(); bool m_add_locks; bool m_charsets_consistent; bool m_deffer_table_indexes; bool m_drop_database; bool m_drop_table; bool m_drop_user; bool m_dump_column_names; bool m_hex_blob; bool m_insert_type_replace; bool m_insert_type_ignore; bool m_suppress_create_table; bool m_suppress_create_database; bool m_timezone_consistent; bool m_skip_definer; enum enum_gtid_purged_mode m_gtid_purged; const Mysql_chain_element_options* m_mysql_chain_element_options; const TYPELIB* get_gtid_purged_mode_typelib() { static const char *gtid_purged_mode_names[4]= {"OFF", "AUTO", "ON", NullS}; TYPELIB static gtid_purged_mode_typelib= {array_elements(gtid_purged_mode_names) -1, "", gtid_purged_mode_names, NULL}; return >id_purged_mode_typelib; } }; } } } #endif