mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
cfb59f3196
commit f6ed777697db4ad7aee1e98c53243dced2b5891c Author: Chenyu Yan <seayan@outlook.com> Date: Thu Dec 29 16:10:25 2016 -0800 Fix BIG_TIMEOUT constant Summary: Update the constant to reflect what the comments indicates. Reviewed By: gunnarku Differential Revision: D4374476 fbshipit-source-id: dd7f484
82 lines
2.4 KiB
C++
82 lines
2.4 KiB
C++
/*
|
|
Copyright (c) 2012,2013 Monty Program Ab
|
|
|
|
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
#pragma once
|
|
|
|
/* C++ standard header files */
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
/* MySQL header files */
|
|
#include "./sql_string.h"
|
|
|
|
/* RocksDB includes */
|
|
#include "rocksdb/table.h"
|
|
#include "rocksdb/utilities/transaction_db.h"
|
|
|
|
namespace myrocks {
|
|
|
|
enum RDB_IO_ERROR_TYPE {
|
|
RDB_IO_ERROR_TX_COMMIT,
|
|
RDB_IO_ERROR_DICT_COMMIT,
|
|
RDB_IO_ERROR_BG_THREAD,
|
|
RDB_IO_ERROR_GENERAL
|
|
};
|
|
|
|
void rdb_handle_io_error(rocksdb::Status status, RDB_IO_ERROR_TYPE err_type);
|
|
|
|
int rdb_normalize_tablename(const std::string& tablename, std::string* str)
|
|
__attribute__((__nonnull__, __warn_unused_result__));
|
|
|
|
int rdb_split_normalized_tablename(const std::string& fullname, std::string *db,
|
|
std::string *table = nullptr,
|
|
std::string *partition = nullptr)
|
|
__attribute__((__warn_unused_result__));
|
|
|
|
std::vector<std::string> rdb_get_open_table_names(void);
|
|
|
|
int rdb_get_table_perf_counters(const char *tablename,
|
|
Rdb_perf_counters *counters)
|
|
__attribute__((__nonnull__(2)));
|
|
|
|
void rdb_get_global_perf_counters(Rdb_perf_counters *counters)
|
|
__attribute__((__nonnull__(1)));
|
|
|
|
void rdb_queue_save_stats_request();
|
|
|
|
/*
|
|
Access to singleton objects.
|
|
*/
|
|
|
|
rocksdb::TransactionDB *rdb_get_rocksdb_db();
|
|
|
|
class Rdb_cf_manager;
|
|
Rdb_cf_manager& rdb_get_cf_manager();
|
|
|
|
rocksdb::BlockBasedTableOptions& rdb_get_table_options();
|
|
|
|
class Rdb_dict_manager;
|
|
Rdb_dict_manager *rdb_get_dict_manager(void)
|
|
__attribute__((__warn_unused_result__));
|
|
|
|
class Rdb_ddl_manager;
|
|
Rdb_ddl_manager *rdb_get_ddl_manager(void)
|
|
__attribute__((__warn_unused_result__));
|
|
|
|
class Rdb_binlog_manager;
|
|
Rdb_binlog_manager *rdb_get_binlog_manager(void)
|
|
__attribute__((__warn_unused_result__));
|
|
|
|
} // namespace myrocks
|