Drizzled Public API Documentation

load_list.h
1 /* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3  *
4  * Copyright (C) 2009 Sun Microsystems, Inc.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; version 2 of the License.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18  */
19 
20 #ifndef DRIZZLED_MODULE_LOAD_LIST_H
21 #define DRIZZLED_MODULE_LOAD_LIST_H
22 
23 /* The list of builtin plugins */
24 #define PANDORA_BUILTIN_LIST "utility_functions,user_locks,table_cache_dictionary,syslog,string_functions,status_dictionary,sleep,signal_handler,show_dictionary,session_dictionary,schema_engine,schema_dictionary,registry_dictionary,protocol_dictionary,mysql_unix_socket_protocol,mysql_protocol,myisam,memory,math_functions,innobase,information_schema_dictionary,function_engine,error_dictionary,errmsg_stderr,drizzle_protocol,console,collation_dictionary,catalog,auth_all"
25 #define PANDORA_BUILTIN_LOAD_LIST "utility_functions,user_locks,table_cache_dictionary,syslog,string_functions,status_dictionary,sleep,signal_handler,show_dictionary,session_dictionary,schema_engine,schema_dictionary,registry_dictionary,protocol_dictionary,mysql_unix_socket_protocol,mysql_protocol,myisam,memory,math_functions,innobase,information_schema_dictionary,function_engine,error_dictionary,errmsg_stderr,drizzle_protocol,console,collation_dictionary,catalog,auth_all"
26 /* List of plugins that should be loaded on startup if no
27  * value is given for --plugin-load */
28 #define PANDORA_PLUGIN_LIST "version,uuid_function,substr_functions,show_schema_proto,reverse_function,rand_function,multi_thread,md5,logging_stats,length,js,hex_functions,default_replicator,crc32,connection_id,compression,charlength,benchmark,ascii,"
29 
30 /* The list of builtin plugins */
31 #define PANDORA_BUILTIN_SYMBOLS_LIST _drizzled_utility_functions_plugin_,_drizzled_user_locks_plugin_,_drizzled_table_cache_dictionary_plugin_,_drizzled_syslog_plugin_,_drizzled_string_functions_plugin_,_drizzled_status_dictionary_plugin_,_drizzled_sleep_plugin_,_drizzled_signal_handler_plugin_,_drizzled_show_dictionary_plugin_,_drizzled_session_dictionary_plugin_,_drizzled_schema_engine_plugin_,_drizzled_schema_dictionary_plugin_,_drizzled_registry_dictionary_plugin_,_drizzled_protocol_dictionary_plugin_,_drizzled_mysql_unix_socket_protocol_plugin_,_drizzled_mysql_protocol_plugin_,_drizzled_myisam_plugin_,_drizzled_memory_plugin_,_drizzled_math_functions_plugin_,_drizzled_innobase_plugin_,_drizzled_information_schema_dictionary_plugin_,_drizzled_function_engine_plugin_,_drizzled_error_dictionary_plugin_,_drizzled_errmsg_stderr_plugin_,_drizzled_drizzle_protocol_plugin_,_drizzled_console_plugin_,_drizzled_collation_dictionary_plugin_,_drizzled_catalog_plugin_,_drizzled_auth_all_plugin_
32 #define PANDORA_BUILTIN_LOAD_SYMBOLS_LIST _drizzled_utility_functions_plugin_,_drizzled_user_locks_plugin_,_drizzled_table_cache_dictionary_plugin_,_drizzled_syslog_plugin_,_drizzled_string_functions_plugin_,_drizzled_status_dictionary_plugin_,_drizzled_sleep_plugin_,_drizzled_signal_handler_plugin_,_drizzled_show_dictionary_plugin_,_drizzled_session_dictionary_plugin_,_drizzled_schema_engine_plugin_,_drizzled_schema_dictionary_plugin_,_drizzled_registry_dictionary_plugin_,_drizzled_protocol_dictionary_plugin_,_drizzled_mysql_unix_socket_protocol_plugin_,_drizzled_mysql_protocol_plugin_,_drizzled_myisam_plugin_,_drizzled_memory_plugin_,_drizzled_math_functions_plugin_,_drizzled_innobase_plugin_,_drizzled_information_schema_dictionary_plugin_,_drizzled_function_engine_plugin_,_drizzled_error_dictionary_plugin_,_drizzled_errmsg_stderr_plugin_,_drizzled_drizzle_protocol_plugin_,_drizzled_console_plugin_,_drizzled_collation_dictionary_plugin_,_drizzled_catalog_plugin_,_drizzled_auth_all_plugin_
33 
34 #endif /* DRIZZLED_MODULE_LOAD_LIST_H */
35