1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008 Sun Microsystems, Inc.
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.
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.
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
23
Handler-calling-functions
27
#include "drizzled/my_hash.h"
28
#include "drizzled/error.h"
29
#include "drizzled/gettext.h"
30
#include "drizzled/probes.h"
31
#include "drizzled/sql_parse.h"
32
#include "drizzled/session.h"
33
#include "drizzled/sql_base.h"
34
#include "drizzled/replication_services.h"
35
#include "drizzled/lock.h"
36
#include "drizzled/item/int.h"
37
#include "drizzled/item/empty_string.h"
38
#include "drizzled/field/epoch.h"
39
#include "drizzled/plugin/client.h"
40
#include "drizzled/internal/my_sys.h"
47
KEY_CREATE_INFO default_key_create_info= { HA_KEY_ALG_UNDEF, 0, {NULL,0} };
49
const char *ha_row_type[] = {
50
"", "FIXED", "DYNAMIC", "COMPRESSED", "REDUNDANT", "COMPACT", "PAGE", "?","?","?"
56
Register Cursor error messages for use with my_error().
59
void ha_init_errors(void)
61
// Set the dedicated error messages.
62
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_KEY_NOT_FOUND, ER(ER_KEY_NOT_FOUND));
63
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_FOUND_DUPP_KEY, ER(ER_DUP_KEY));
64
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_RECORD_CHANGED, "Update wich is recoverable");
65
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_WRONG_INDEX, "Wrong index given to function");
66
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_CRASHED, ER(ER_NOT_KEYFILE));
67
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_WRONG_IN_RECORD, ER(ER_CRASHED_ON_USAGE));
68
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_OUT_OF_MEM, "Table Cursor out of memory");
69
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_NOT_A_TABLE, "Incorrect file format '%.64s'");
70
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_WRONG_COMMAND, "Command not supported");
71
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_OLD_FILE, ER(ER_OLD_KEYFILE));
72
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_NO_ACTIVE_RECORD, "No record read in update");
73
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_RECORD_DELETED, "Intern record deleted");
74
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_RECORD_FILE_FULL, ER(ER_RECORD_FILE_FULL));
75
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_INDEX_FILE_FULL, "No more room in index file '%.64s'");
76
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_END_OF_FILE, "End in next/prev/first/last");
77
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_UNSUPPORTED, ER(ER_ILLEGAL_HA));
78
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_TO_BIG_ROW, "Too big row");
79
DRIZZLE_ADD_ERROR_MESSAGE(HA_WRONG_CREATE_OPTION, "Wrong create option");
80
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_FOUND_DUPP_UNIQUE, ER(ER_DUP_UNIQUE));
81
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_UNKNOWN_CHARSET, "Can't open charset");
82
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_WRONG_MRG_TABLE_DEF, ER(ER_WRONG_MRG_TABLE));
83
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_CRASHED_ON_REPAIR, ER(ER_CRASHED_ON_REPAIR));
84
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_CRASHED_ON_USAGE, ER(ER_CRASHED_ON_USAGE));
85
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_LOCK_WAIT_TIMEOUT, ER(ER_LOCK_WAIT_TIMEOUT));
86
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_LOCK_TABLE_FULL, ER(ER_LOCK_TABLE_FULL));
87
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_READ_ONLY_TRANSACTION, ER(ER_READ_ONLY_TRANSACTION));
88
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_LOCK_DEADLOCK, ER(ER_LOCK_DEADLOCK));
89
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_CANNOT_ADD_FOREIGN, ER(ER_CANNOT_ADD_FOREIGN));
90
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_NO_REFERENCED_ROW, ER(ER_NO_REFERENCED_ROW_2));
91
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_ROW_IS_REFERENCED, ER(ER_ROW_IS_REFERENCED_2));
92
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_NO_SAVEPOINT, "No savepoint with that name");
93
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_NON_UNIQUE_BLOCK_SIZE, "Non unique key block size");
94
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_NO_SUCH_TABLE, "No such table: '%.64s'");
95
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_TABLE_EXIST, ER(ER_TABLE_EXISTS_ERROR));
96
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_NO_CONNECTION, "Could not connect to storage engine");
97
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_TABLE_DEF_CHANGED, ER(ER_TABLE_DEF_CHANGED));
98
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_FOREIGN_DUPLICATE_KEY, "FK constraint would lead to duplicate key");
99
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_TABLE_NEEDS_UPGRADE, ER(ER_TABLE_NEEDS_UPGRADE));
100
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_TABLE_READONLY, ER(ER_OPEN_AS_READONLY));
101
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_AUTOINC_READ_FAILED, ER(ER_AUTOINC_READ_FAILED));
102
DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_AUTOINC_ERANGE, ER(ER_WARN_DATA_OUT_OF_RANGE));
105
} /* namespace drizzled */