mirror of
https://github.com/MariaDB/server.git
synced 2025-11-14 09:46:14 +01:00
change created by: unifdef -DMYSQL_VERSION_ID=100400 -DMARIADB_BASE_VERSION -m storage/spider/spd_* storage/spider/ha_spider.* storage/spider/hs_client/* basically MDEV-27637, MDEV-27641, MDEV-27655
26 lines
420 B
C++
26 lines
420 B
C++
|
|
// vim:sw=2:ai
|
|
|
|
/*
|
|
* Copyright (C) 2010-2011 DeNA Co.,Ltd.. All rights reserved.
|
|
* Copyright (C) 2011-2017 Kentoku SHIBA
|
|
* See COPYRIGHT.txt for details.
|
|
*/
|
|
|
|
#ifndef DENA_FATAL_HPP
|
|
#define DENA_FATAL_HPP
|
|
|
|
#include "mysql_version.h"
|
|
#include "sql_priv.h"
|
|
#include "probes_mysql.h"
|
|
#include "sql_class.h"
|
|
|
|
namespace dena {
|
|
|
|
void fatal_abort(const String& message);
|
|
void fatal_abort(const char *message);
|
|
|
|
};
|
|
|
|
#endif
|
|
|