~drizzle-trunk/drizzle/development

1208.3.3 by brian
Adding missingfile.
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 *
4
 *  Copyright (C) 2008 Sun Microsystems
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
/**
21
  @file Cursor.cc
22
23
  Handler-calling-functions
24
*/
25
1241.9.36 by Monty Taylor
ZOMG. I deleted drizzled/server_includes.h.
26
#include "config.h"
1241.9.57 by Monty Taylor
Oy. Bigger change than I normally like - but this stuff is all intertwined.
27
#include "drizzled/my_hash.h"
1208.3.3 by brian
Adding missingfile.
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/timestamp.h"
39
#include "drizzled/plugin/client.h"
1241.9.64 by Monty Taylor
Moved remaining non-public portions of mysys and mystrings to drizzled/internal.
40
#include "drizzled/internal/my_sys.h"
1208.3.3 by brian
Adding missingfile.
41
42
using namespace std;
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
43
44
namespace drizzled
45
{
1208.3.3 by brian
Adding missingfile.
46
47
KEY_CREATE_INFO default_key_create_info= { HA_KEY_ALG_UNDEF, 0, {NULL,0} };
48
49
const char *ha_row_type[] = {
50
  "", "FIXED", "DYNAMIC", "COMPRESSED", "REDUNDANT", "COMPACT", "PAGE", "?","?","?"
51
};
52
53
54
55
/**
56
  Register Cursor error messages for use with my_error().
57
*/
58
1271.7.9 by Tim Penhey
Almost there.
59
void ha_init_errors(void)
1208.3.3 by brian
Adding missingfile.
60
{
1271.7.9 by Tim Penhey
Almost there.
61
  // Set the dedicated error messages.
62
  add_error_message(HA_ERR_KEY_NOT_FOUND,          ER(ER_KEY_NOT_FOUND));
63
  add_error_message(HA_ERR_FOUND_DUPP_KEY,         ER(ER_DUP_KEY));
64
  add_error_message(HA_ERR_RECORD_CHANGED,         "Update wich is recoverable");
65
  add_error_message(HA_ERR_WRONG_INDEX,            "Wrong index given to function");
66
  add_error_message(HA_ERR_CRASHED,                ER(ER_NOT_KEYFILE));
67
  add_error_message(HA_ERR_WRONG_IN_RECORD,        ER(ER_CRASHED_ON_USAGE));
68
  add_error_message(HA_ERR_OUT_OF_MEM,             "Table Cursor out of memory");
69
  add_error_message(HA_ERR_NOT_A_TABLE,            "Incorrect file format '%.64s'");
70
  add_error_message(HA_ERR_WRONG_COMMAND,          "Command not supported");
71
  add_error_message(HA_ERR_OLD_FILE,               ER(ER_OLD_KEYFILE));
72
  add_error_message(HA_ERR_NO_ACTIVE_RECORD,       "No record read in update");
73
  add_error_message(HA_ERR_RECORD_DELETED,         "Intern record deleted");
74
  add_error_message(HA_ERR_RECORD_FILE_FULL,       ER(ER_RECORD_FILE_FULL));
75
  add_error_message(HA_ERR_INDEX_FILE_FULL,        "No more room in index file '%.64s'");
76
  add_error_message(HA_ERR_END_OF_FILE,            "End in next/prev/first/last");
77
  add_error_message(HA_ERR_UNSUPPORTED,            ER(ER_ILLEGAL_HA));
78
  add_error_message(HA_ERR_TO_BIG_ROW,             "Too big row");
79
  add_error_message(HA_WRONG_CREATE_OPTION,        "Wrong create option");
80
  add_error_message(HA_ERR_FOUND_DUPP_UNIQUE,      ER(ER_DUP_UNIQUE));
81
  add_error_message(HA_ERR_UNKNOWN_CHARSET,        "Can't open charset");
82
  add_error_message(HA_ERR_WRONG_MRG_TABLE_DEF,    ER(ER_WRONG_MRG_TABLE));
83
  add_error_message(HA_ERR_CRASHED_ON_REPAIR,      ER(ER_CRASHED_ON_REPAIR));
84
  add_error_message(HA_ERR_CRASHED_ON_USAGE,       ER(ER_CRASHED_ON_USAGE));
85
  add_error_message(HA_ERR_LOCK_WAIT_TIMEOUT,      ER(ER_LOCK_WAIT_TIMEOUT));
86
  add_error_message(HA_ERR_LOCK_TABLE_FULL,        ER(ER_LOCK_TABLE_FULL));
87
  add_error_message(HA_ERR_READ_ONLY_TRANSACTION,  ER(ER_READ_ONLY_TRANSACTION));
88
  add_error_message(HA_ERR_LOCK_DEADLOCK,          ER(ER_LOCK_DEADLOCK));
89
  add_error_message(HA_ERR_CANNOT_ADD_FOREIGN,     ER(ER_CANNOT_ADD_FOREIGN));
90
  add_error_message(HA_ERR_NO_REFERENCED_ROW,      ER(ER_NO_REFERENCED_ROW_2));
91
  add_error_message(HA_ERR_ROW_IS_REFERENCED,      ER(ER_ROW_IS_REFERENCED_2));
92
  add_error_message(HA_ERR_NO_SAVEPOINT,           "No savepoint with that name");
93
  add_error_message(HA_ERR_NON_UNIQUE_BLOCK_SIZE,  "Non unique key block size");
94
  add_error_message(HA_ERR_NO_SUCH_TABLE,          "No such table: '%.64s'");
95
  add_error_message(HA_ERR_TABLE_EXIST,            ER(ER_TABLE_EXISTS_ERROR));
96
  add_error_message(HA_ERR_NO_CONNECTION,          "Could not connect to storage engine");
97
  add_error_message(HA_ERR_TABLE_DEF_CHANGED,      ER(ER_TABLE_DEF_CHANGED));
98
  add_error_message(HA_ERR_FOREIGN_DUPLICATE_KEY,  "FK constraint would lead to duplicate key");
99
  add_error_message(HA_ERR_TABLE_NEEDS_UPGRADE,    ER(ER_TABLE_NEEDS_UPGRADE));
100
  add_error_message(HA_ERR_TABLE_READONLY,         ER(ER_OPEN_AS_READONLY));
101
  add_error_message(HA_ERR_AUTOINC_READ_FAILED,    ER(ER_AUTOINC_READ_FAILED));
102
  add_error_message(HA_ERR_AUTOINC_ERANGE,         ER(ER_WARN_DATA_OUT_OF_RANGE));
1208.3.3 by brian
Adding missingfile.
103
}
104
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
105
} /* namespace drizzled */