mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 19:06:14 +01:00 
			
		
		
		
	 9ab0d7b4e9
			
		
	
	
	9ab0d7b4e9
	
	
	
		
			
			Copy of
    commit dcd9379eb5707bc7514a2ff4d9127790356505cb
    Author: Manuel Ung <mung@fb.com>
    Date:   Fri Jun 14 10:38:17 2019 -0700
        Skip valgrind for rocksdb.force_shutdown
        Summary:
        This test does unclean shutdown, and leaks memory.
        Squash with: D15749084
        Reviewed By: hermanlee
        Differential Revision: D15828957
        fbshipit-source-id: 30541455d74
		
	
			
		
			
				
	
	
		
			103 lines
		
	
	
	
		
			3.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			103 lines
		
	
	
	
		
			3.1 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., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 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,
 | |
|   RDB_IO_ERROR_LAST
 | |
| };
 | |
| 
 | |
| const char *get_rdb_io_error_string(const RDB_IO_ERROR_TYPE err_type);
 | |
| 
 | |
| void rdb_handle_io_error(const rocksdb::Status status,
 | |
|                          const RDB_IO_ERROR_TYPE err_type)
 | |
| #if defined(__clang__)
 | |
|     MY_ATTRIBUTE((optnone));
 | |
| #else
 | |
|     MY_ATTRIBUTE((noinline,noclone));
 | |
| #endif
 | |
| 
 | |
| int rdb_normalize_tablename(const std::string &tablename, std::string *str)
 | |
|     MY_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)
 | |
|     MY_ATTRIBUTE((__warn_unused_result__));
 | |
| 
 | |
| std::vector<std::string> rdb_get_open_table_names(void);
 | |
| 
 | |
| class Rdb_perf_counters;
 | |
| int rdb_get_table_perf_counters(const char *tablename,
 | |
|                                 Rdb_perf_counters *counters)
 | |
|     MY_ATTRIBUTE((__nonnull__(2)));
 | |
| 
 | |
| void rdb_get_global_perf_counters(Rdb_perf_counters *counters)
 | |
|     MY_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();
 | |
| 
 | |
| const rocksdb::BlockBasedTableOptions &rdb_get_table_options();
 | |
| bool rdb_is_ttl_enabled();
 | |
| bool rdb_is_ttl_read_filtering_enabled();
 | |
| #ifndef DBUG_OFF
 | |
| int rdb_dbug_set_ttl_rec_ts();
 | |
| int rdb_dbug_set_ttl_snapshot_ts();
 | |
| int rdb_dbug_set_ttl_read_filter_ts();
 | |
| bool rdb_dbug_set_ttl_ignore_pk();
 | |
| #endif
 | |
| 
 | |
| enum operation_type : int;
 | |
| void rdb_update_global_stats(const operation_type &type, uint count,
 | |
|                              bool is_system_table = false);
 | |
| 
 | |
| class Rdb_dict_manager;
 | |
| Rdb_dict_manager *rdb_get_dict_manager(void)
 | |
|     MY_ATTRIBUTE((__warn_unused_result__));
 | |
| 
 | |
| class Rdb_ddl_manager;
 | |
| Rdb_ddl_manager *rdb_get_ddl_manager(void)
 | |
|     MY_ATTRIBUTE((__warn_unused_result__));
 | |
| 
 | |
| class Rdb_binlog_manager;
 | |
| Rdb_binlog_manager *rdb_get_binlog_manager(void)
 | |
|     MY_ATTRIBUTE((__warn_unused_result__));
 | |
| }  // namespace myrocks
 |