annotate MySQLdb/constants/ER.py @ 48:f4fd8c20511c MySQLdb

Read a default file in the test setUp. Since Python 2.4, int() will return longs if needed so make all long references int as in Python 3.0 there is no more long due to int/long unification (new ints are old longs).
author adustman
date Sun, 22 Feb 2009 20:01:31 +0000
parents 7773efbe9b30
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
14
7773efbe9b30 Formatting and PyLint fixes. Final score: 8.21/10
adustman
parents: 8
diff changeset
1 """
7773efbe9b30 Formatting and PyLint fixes. Final score: 8.21/10
adustman
parents: 8
diff changeset
2 MySQL ER Constants
7773efbe9b30 Formatting and PyLint fixes. Final score: 8.21/10
adustman
parents: 8
diff changeset
3 ------------------
0
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
4
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
5 These constants are error codes for the bulk of the error conditions
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
6 that may occur.
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
7
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
8 """
14
7773efbe9b30 Formatting and PyLint fixes. Final score: 8.21/10
adustman
parents: 8
diff changeset
9 __revision__ = "$Revision$"[11:-2]
7773efbe9b30 Formatting and PyLint fixes. Final score: 8.21/10
adustman
parents: 8
diff changeset
10 __author__ = "$Author$"[9:-2]
7773efbe9b30 Formatting and PyLint fixes. Final score: 8.21/10
adustman
parents: 8
diff changeset
11
8
fa8974a41c76 New error handling code, plus some small fixes from 1.2
adustman
parents: 0
diff changeset
12 # Autogenerated file, please don't edit
0
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
13
8
fa8974a41c76 New error handling code, plus some small fixes from 1.2
adustman
parents: 0
diff changeset
14 ERROR_FIRST = 1000
0
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
15 HASHCHK = 1000
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
16 NISAMCHK = 1001
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
17 NO = 1002
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
18 YES = 1003
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
19 CANT_CREATE_FILE = 1004
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
20 CANT_CREATE_TABLE = 1005
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
21 CANT_CREATE_DB = 1006
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
22 DB_CREATE_EXISTS = 1007
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
23 DB_DROP_EXISTS = 1008
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
24 DB_DROP_DELETE = 1009
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
25 DB_DROP_RMDIR = 1010
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
26 CANT_DELETE_FILE = 1011
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
27 CANT_FIND_SYSTEM_REC = 1012
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
28 CANT_GET_STAT = 1013
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
29 CANT_GET_WD = 1014
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
30 CANT_LOCK = 1015
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
31 CANT_OPEN_FILE = 1016
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
32 FILE_NOT_FOUND = 1017
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
33 CANT_READ_DIR = 1018
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
34 CANT_SET_WD = 1019
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
35 CHECKREAD = 1020
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
36 DISK_FULL = 1021
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
37 DUP_KEY = 1022
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
38 ERROR_ON_CLOSE = 1023
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
39 ERROR_ON_READ = 1024
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
40 ERROR_ON_RENAME = 1025
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
41 ERROR_ON_WRITE = 1026
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
42 FILE_USED = 1027
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
43 FILSORT_ABORT = 1028
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
44 FORM_NOT_FOUND = 1029
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
45 GET_ERRNO = 1030
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
46 ILLEGAL_HA = 1031
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
47 KEY_NOT_FOUND = 1032
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
48 NOT_FORM_FILE = 1033
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
49 NOT_KEYFILE = 1034
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
50 OLD_KEYFILE = 1035
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
51 OPEN_AS_READONLY = 1036
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
52 OUTOFMEMORY = 1037
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
53 OUT_OF_SORTMEMORY = 1038
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
54 UNEXPECTED_EOF = 1039
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
55 CON_COUNT_ERROR = 1040
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
56 OUT_OF_RESOURCES = 1041
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
57 BAD_HOST_ERROR = 1042
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
58 HANDSHAKE_ERROR = 1043
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
59 DBACCESS_DENIED_ERROR = 1044
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
60 ACCESS_DENIED_ERROR = 1045
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
61 NO_DB_ERROR = 1046
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
62 UNKNOWN_COM_ERROR = 1047
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
63 BAD_NULL_ERROR = 1048
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
64 BAD_DB_ERROR = 1049
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
65 TABLE_EXISTS_ERROR = 1050
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
66 BAD_TABLE_ERROR = 1051
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
67 NON_UNIQ_ERROR = 1052
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
68 SERVER_SHUTDOWN = 1053
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
69 BAD_FIELD_ERROR = 1054
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
70 WRONG_FIELD_WITH_GROUP = 1055
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
71 WRONG_GROUP_FIELD = 1056
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
72 WRONG_SUM_SELECT = 1057
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
73 WRONG_VALUE_COUNT = 1058
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
74 TOO_LONG_IDENT = 1059
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
75 DUP_FIELDNAME = 1060
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
76 DUP_KEYNAME = 1061
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
77 DUP_ENTRY = 1062
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
78 WRONG_FIELD_SPEC = 1063
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
79 PARSE_ERROR = 1064
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
80 EMPTY_QUERY = 1065
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
81 NONUNIQ_TABLE = 1066
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
82 INVALID_DEFAULT = 1067
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
83 MULTIPLE_PRI_KEY = 1068
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
84 TOO_MANY_KEYS = 1069
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
85 TOO_MANY_KEY_PARTS = 1070
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
86 TOO_LONG_KEY = 1071
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
87 KEY_COLUMN_DOES_NOT_EXITS = 1072
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
88 BLOB_USED_AS_KEY = 1073
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
89 TOO_BIG_FIELDLENGTH = 1074
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
90 WRONG_AUTO_KEY = 1075
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
91 READY = 1076
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
92 NORMAL_SHUTDOWN = 1077
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
93 GOT_SIGNAL = 1078
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
94 SHUTDOWN_COMPLETE = 1079
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
95 FORCING_CLOSE = 1080
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
96 IPSOCK_ERROR = 1081
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
97 NO_SUCH_INDEX = 1082
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
98 WRONG_FIELD_TERMINATORS = 1083
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
99 BLOBS_AND_NO_TERMINATED = 1084
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
100 TEXTFILE_NOT_READABLE = 1085
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
101 FILE_EXISTS_ERROR = 1086
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
102 LOAD_INFO = 1087
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
103 ALTER_INFO = 1088
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
104 WRONG_SUB_KEY = 1089
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
105 CANT_REMOVE_ALL_FIELDS = 1090
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
106 CANT_DROP_FIELD_OR_KEY = 1091
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
107 INSERT_INFO = 1092
8
fa8974a41c76 New error handling code, plus some small fixes from 1.2
adustman
parents: 0
diff changeset
108 UPDATE_TABLE_USED = 1093
0
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
109 NO_SUCH_THREAD = 1094
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
110 KILL_DENIED_ERROR = 1095
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
111 NO_TABLES_USED = 1096
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
112 TOO_BIG_SET = 1097
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
113 NO_UNIQUE_LOGFILE = 1098
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
114 TABLE_NOT_LOCKED_FOR_WRITE = 1099
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
115 TABLE_NOT_LOCKED = 1100
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
116 BLOB_CANT_HAVE_DEFAULT = 1101
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
117 WRONG_DB_NAME = 1102
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
118 WRONG_TABLE_NAME = 1103
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
119 TOO_BIG_SELECT = 1104
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
120 UNKNOWN_ERROR = 1105
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
121 UNKNOWN_PROCEDURE = 1106
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
122 WRONG_PARAMCOUNT_TO_PROCEDURE = 1107
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
123 WRONG_PARAMETERS_TO_PROCEDURE = 1108
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
124 UNKNOWN_TABLE = 1109
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
125 FIELD_SPECIFIED_TWICE = 1110
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
126 INVALID_GROUP_FUNC_USE = 1111
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
127 UNSUPPORTED_EXTENSION = 1112
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
128 TABLE_MUST_HAVE_COLUMNS = 1113
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
129 RECORD_FILE_FULL = 1114
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
130 UNKNOWN_CHARACTER_SET = 1115
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
131 TOO_MANY_TABLES = 1116
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
132 TOO_MANY_FIELDS = 1117
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
133 TOO_BIG_ROWSIZE = 1118
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
134 STACK_OVERRUN = 1119
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
135 WRONG_OUTER_JOIN = 1120
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
136 NULL_COLUMN_IN_INDEX = 1121
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
137 CANT_FIND_UDF = 1122
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
138 CANT_INITIALIZE_UDF = 1123
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
139 UDF_NO_PATHS = 1124
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
140 UDF_EXISTS = 1125
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
141 CANT_OPEN_LIBRARY = 1126
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
142 CANT_FIND_DL_ENTRY = 1127
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
143 FUNCTION_NOT_DEFINED = 1128
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
144 HOST_IS_BLOCKED = 1129
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
145 HOST_NOT_PRIVILEGED = 1130
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
146 PASSWORD_ANONYMOUS_USER = 1131
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
147 PASSWORD_NOT_ALLOWED = 1132
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
148 PASSWORD_NO_MATCH = 1133
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
149 UPDATE_INFO = 1134
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
150 CANT_CREATE_THREAD = 1135
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
151 WRONG_VALUE_COUNT_ON_ROW = 1136
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
152 CANT_REOPEN_TABLE = 1137
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
153 INVALID_USE_OF_NULL = 1138
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
154 REGEXP_ERROR = 1139
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
155 MIX_OF_GROUP_FUNC_AND_FIELDS = 1140
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
156 NONEXISTING_GRANT = 1141
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
157 TABLEACCESS_DENIED_ERROR = 1142
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
158 COLUMNACCESS_DENIED_ERROR = 1143
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
159 ILLEGAL_GRANT_FOR_TABLE = 1144
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
160 GRANT_WRONG_HOST_OR_USER = 1145
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
161 NO_SUCH_TABLE = 1146
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
162 NONEXISTING_TABLE_GRANT = 1147
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
163 NOT_ALLOWED_COMMAND = 1148
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
164 SYNTAX_ERROR = 1149
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
165 DELAYED_CANT_CHANGE_LOCK = 1150
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
166 TOO_MANY_DELAYED_THREADS = 1151
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
167 ABORTING_CONNECTION = 1152
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
168 NET_PACKET_TOO_LARGE = 1153
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
169 NET_READ_ERROR_FROM_PIPE = 1154
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
170 NET_FCNTL_ERROR = 1155
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
171 NET_PACKETS_OUT_OF_ORDER = 1156
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
172 NET_UNCOMPRESS_ERROR = 1157
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
173 NET_READ_ERROR = 1158
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
174 NET_READ_INTERRUPTED = 1159
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
175 NET_ERROR_ON_WRITE = 1160
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
176 NET_WRITE_INTERRUPTED = 1161
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
177 TOO_LONG_STRING = 1162
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
178 TABLE_CANT_HANDLE_BLOB = 1163
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
179 TABLE_CANT_HANDLE_AUTO_INCREMENT = 1164
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
180 DELAYED_INSERT_TABLE_LOCKED = 1165
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
181 WRONG_COLUMN_NAME = 1166
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
182 WRONG_KEY_COLUMN = 1167
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
183 WRONG_MRG_TABLE = 1168
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
184 DUP_UNIQUE = 1169
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
185 BLOB_KEY_WITHOUT_LENGTH = 1170
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
186 PRIMARY_CANT_HAVE_NULL = 1171
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
187 TOO_MANY_ROWS = 1172
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
188 REQUIRES_PRIMARY_KEY = 1173
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
189 NO_RAID_COMPILED = 1174
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
190 UPDATE_WITHOUT_KEY_IN_SAFE_MODE = 1175
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
191 KEY_DOES_NOT_EXITS = 1176
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
192 CHECK_NO_SUCH_TABLE = 1177
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
193 CHECK_NOT_IMPLEMENTED = 1178
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
194 CANT_DO_THIS_DURING_AN_TRANSACTION = 1179
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
195 ERROR_DURING_COMMIT = 1180
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
196 ERROR_DURING_ROLLBACK = 1181
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
197 ERROR_DURING_FLUSH_LOGS = 1182
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
198 ERROR_DURING_CHECKPOINT = 1183
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
199 NEW_ABORTING_CONNECTION = 1184
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
200 DUMP_NOT_IMPLEMENTED = 1185
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
201 FLUSH_MASTER_BINLOG_CLOSED = 1186
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
202 INDEX_REBUILD = 1187
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
203 MASTER = 1188
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
204 MASTER_NET_READ = 1189
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
205 MASTER_NET_WRITE = 1190
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
206 FT_MATCHING_KEY_NOT_FOUND = 1191
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
207 LOCK_OR_ACTIVE_TRANSACTION = 1192
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
208 UNKNOWN_SYSTEM_VARIABLE = 1193
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
209 CRASHED_ON_USAGE = 1194
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
210 CRASHED_ON_REPAIR = 1195
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
211 WARNING_NOT_COMPLETE_ROLLBACK = 1196
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
212 TRANS_CACHE_FULL = 1197
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
213 SLAVE_MUST_STOP = 1198
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
214 SLAVE_NOT_RUNNING = 1199
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
215 BAD_SLAVE = 1200
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
216 MASTER_INFO = 1201
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
217 SLAVE_THREAD = 1202
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
218 TOO_MANY_USER_CONNECTIONS = 1203
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
219 SET_CONSTANTS_ONLY = 1204
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
220 LOCK_WAIT_TIMEOUT = 1205
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
221 LOCK_TABLE_FULL = 1206
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
222 READ_ONLY_TRANSACTION = 1207
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
223 DROP_DB_WITH_READ_LOCK = 1208
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
224 CREATE_DB_WITH_READ_LOCK = 1209
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
225 WRONG_ARGUMENTS = 1210
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
226 NO_PERMISSION_TO_CREATE_USER = 1211
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
227 UNION_TABLES_IN_DIFFERENT_DIR = 1212
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
228 LOCK_DEADLOCK = 1213
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
229 TABLE_CANT_HANDLE_FT = 1214
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
230 CANNOT_ADD_FOREIGN = 1215
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
231 NO_REFERENCED_ROW = 1216
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
232 ROW_IS_REFERENCED = 1217
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
233 CONNECT_TO_MASTER = 1218
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
234 QUERY_ON_MASTER = 1219
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
235 ERROR_WHEN_EXECUTING_COMMAND = 1220
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
236 WRONG_USAGE = 1221
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
237 WRONG_NUMBER_OF_COLUMNS_IN_SELECT = 1222
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
238 CANT_UPDATE_WITH_READLOCK = 1223
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
239 MIXING_NOT_ALLOWED = 1224
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
240 DUP_ARGUMENT = 1225
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
241 USER_LIMIT_REACHED = 1226
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
242 SPECIFIC_ACCESS_DENIED_ERROR = 1227
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
243 LOCAL_VARIABLE = 1228
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
244 GLOBAL_VARIABLE = 1229
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
245 NO_DEFAULT = 1230
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
246 WRONG_VALUE_FOR_VAR = 1231
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
247 WRONG_TYPE_FOR_VAR = 1232
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
248 VAR_CANT_BE_READ = 1233
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
249 CANT_USE_OPTION_HERE = 1234
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
250 NOT_SUPPORTED_YET = 1235
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
251 MASTER_FATAL_ERROR_READING_BINLOG = 1236
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
252 SLAVE_IGNORED_TABLE = 1237
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
253 INCORRECT_GLOBAL_LOCAL_VAR = 1238
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
254 WRONG_FK_DEF = 1239
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
255 KEY_REF_DO_NOT_MATCH_TABLE_REF = 1240
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
256 OPERAND_COLUMNS = 1241
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
257 SUBQUERY_NO_1_ROW = 1242
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
258 UNKNOWN_STMT_HANDLER = 1243
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
259 CORRUPT_HELP_DB = 1244
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
260 CYCLIC_REFERENCE = 1245
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
261 AUTO_CONVERT = 1246
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
262 ILLEGAL_REFERENCE = 1247
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
263 DERIVED_MUST_HAVE_ALIAS = 1248
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
264 SELECT_REDUCED = 1249
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
265 TABLENAME_NOT_ALLOWED_HERE = 1250
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
266 NOT_SUPPORTED_AUTH_MODE = 1251
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
267 SPATIAL_CANT_HAVE_NULL = 1252
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
268 COLLATION_CHARSET_MISMATCH = 1253
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
269 SLAVE_WAS_RUNNING = 1254
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
270 SLAVE_WAS_NOT_RUNNING = 1255
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
271 TOO_BIG_FOR_UNCOMPRESS = 1256
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
272 ZLIB_Z_MEM_ERROR = 1257
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
273 ZLIB_Z_BUF_ERROR = 1258
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
274 ZLIB_Z_DATA_ERROR = 1259
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
275 CUT_VALUE_GROUP_CONCAT = 1260
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
276 WARN_TOO_FEW_RECORDS = 1261
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
277 WARN_TOO_MANY_RECORDS = 1262
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
278 WARN_NULL_TO_NOTNULL = 1263
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
279 WARN_DATA_OUT_OF_RANGE = 1264
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
280 WARN_DATA_TRUNCATED = 1265
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
281 WARN_USING_OTHER_HANDLER = 1266
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
282 CANT_AGGREGATE_2COLLATIONS = 1267
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
283 DROP_USER = 1268
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
284 REVOKE_GRANTS = 1269
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
285 CANT_AGGREGATE_3COLLATIONS = 1270
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
286 CANT_AGGREGATE_NCOLLATIONS = 1271
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
287 VARIABLE_IS_NOT_STRUCT = 1272
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
288 UNKNOWN_COLLATION = 1273
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
289 SLAVE_IGNORED_SSL_PARAMS = 1274
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
290 SERVER_IS_IN_SECURE_AUTH_MODE = 1275
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
291 WARN_FIELD_RESOLVED = 1276
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
292 BAD_SLAVE_UNTIL_COND = 1277
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
293 MISSING_SKIP_SLAVE = 1278
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
294 UNTIL_COND_IGNORED = 1279
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
295 WRONG_NAME_FOR_INDEX = 1280
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
296 WRONG_NAME_FOR_CATALOG = 1281
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
297 WARN_QC_RESIZE = 1282
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
298 BAD_FT_COLUMN = 1283
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
299 UNKNOWN_KEY_CACHE = 1284
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
300 WARN_HOSTNAME_WONT_WORK = 1285
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
301 UNKNOWN_STORAGE_ENGINE = 1286
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
302 WARN_DEPRECATED_SYNTAX = 1287
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
303 NON_UPDATABLE_TABLE = 1288
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
304 FEATURE_DISABLED = 1289
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
305 OPTION_PREVENTS_STATEMENT = 1290
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
306 DUPLICATED_VALUE_IN_TYPE = 1291
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
307 TRUNCATED_WRONG_VALUE = 1292
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
308 TOO_MUCH_AUTO_TIMESTAMP_COLS = 1293
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
309 INVALID_ON_UPDATE = 1294
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
310 UNSUPPORTED_PS = 1295
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
311 GET_ERRMSG = 1296
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
312 GET_TEMPORARY_ERRMSG = 1297
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
313 UNKNOWN_TIME_ZONE = 1298
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
314 WARN_INVALID_TIMESTAMP = 1299
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
315 INVALID_CHARACTER_STRING = 1300
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
316 WARN_ALLOWED_PACKET_OVERFLOWED = 1301
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
317 CONFLICTING_DECLARATIONS = 1302
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
318 SP_NO_RECURSIVE_CREATE = 1303
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
319 SP_ALREADY_EXISTS = 1304
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
320 SP_DOES_NOT_EXIST = 1305
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
321 SP_DROP_FAILED = 1306
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
322 SP_STORE_FAILED = 1307
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
323 SP_LILABEL_MISMATCH = 1308
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
324 SP_LABEL_REDEFINE = 1309
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
325 SP_LABEL_MISMATCH = 1310
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
326 SP_UNINIT_VAR = 1311
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
327 SP_BADSELECT = 1312
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
328 SP_BADRETURN = 1313
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
329 SP_BADSTATEMENT = 1314
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
330 UPDATE_LOG_DEPRECATED_IGNORED = 1315
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
331 UPDATE_LOG_DEPRECATED_TRANSLATED = 1316
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
332 QUERY_INTERRUPTED = 1317
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
333 SP_WRONG_NO_OF_ARGS = 1318
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
334 SP_COND_MISMATCH = 1319
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
335 SP_NORETURN = 1320
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
336 SP_NORETURNEND = 1321
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
337 SP_BAD_CURSOR_QUERY = 1322
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
338 SP_BAD_CURSOR_SELECT = 1323
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
339 SP_CURSOR_MISMATCH = 1324
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
340 SP_CURSOR_ALREADY_OPEN = 1325
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
341 SP_CURSOR_NOT_OPEN = 1326
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
342 SP_UNDECLARED_VAR = 1327
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
343 SP_WRONG_NO_OF_FETCH_ARGS = 1328
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
344 SP_FETCH_NO_DATA = 1329
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
345 SP_DUP_PARAM = 1330
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
346 SP_DUP_VAR = 1331
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
347 SP_DUP_COND = 1332
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
348 SP_DUP_CURS = 1333
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
349 SP_CANT_ALTER = 1334
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
350 SP_SUBSELECT_NYI = 1335
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
351 STMT_NOT_ALLOWED_IN_SF_OR_TRG = 1336
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
352 SP_VARCOND_AFTER_CURSHNDLR = 1337
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
353 SP_CURSOR_AFTER_HANDLER = 1338
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
354 SP_CASE_NOT_FOUND = 1339
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
355 FPARSER_TOO_BIG_FILE = 1340
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
356 FPARSER_BAD_HEADER = 1341
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
357 FPARSER_EOF_IN_COMMENT = 1342
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
358 FPARSER_ERROR_IN_PARAMETER = 1343
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
359 FPARSER_EOF_IN_UNKNOWN_PARAMETER = 1344
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
360 VIEW_NO_EXPLAIN = 1345
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
361 FRM_UNKNOWN_TYPE = 1346
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
362 WRONG_OBJECT = 1347
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
363 NONUPDATEABLE_COLUMN = 1348
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
364 VIEW_SELECT_DERIVED = 1349
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
365 VIEW_SELECT_CLAUSE = 1350
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
366 VIEW_SELECT_VARIABLE = 1351
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
367 VIEW_SELECT_TMPTABLE = 1352
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
368 VIEW_WRONG_LIST = 1353
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
369 WARN_VIEW_MERGE = 1354
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
370 WARN_VIEW_WITHOUT_KEY = 1355
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
371 VIEW_INVALID = 1356
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
372 SP_NO_DROP_SP = 1357
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
373 SP_GOTO_IN_HNDLR = 1358
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
374 TRG_ALREADY_EXISTS = 1359
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
375 TRG_DOES_NOT_EXIST = 1360
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
376 TRG_ON_VIEW_OR_TEMP_TABLE = 1361
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
377 TRG_CANT_CHANGE_ROW = 1362
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
378 TRG_NO_SUCH_ROW_IN_TRG = 1363
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
379 NO_DEFAULT_FOR_FIELD = 1364
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
380 DIVISION_BY_ZERO = 1365
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
381 TRUNCATED_WRONG_VALUE_FOR_FIELD = 1366
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
382 ILLEGAL_VALUE_FOR_TYPE = 1367
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
383 VIEW_NONUPD_CHECK = 1368
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
384 VIEW_CHECK_FAILED = 1369
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
385 PROCACCESS_DENIED_ERROR = 1370
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
386 RELAY_LOG_FAIL = 1371
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
387 PASSWD_LENGTH = 1372
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
388 UNKNOWN_TARGET_BINLOG = 1373
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
389 IO_ERR_LOG_INDEX_READ = 1374
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
390 BINLOG_PURGE_PROHIBITED = 1375
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
391 FSEEK_FAIL = 1376
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
392 BINLOG_PURGE_FATAL_ERR = 1377
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
393 LOG_IN_USE = 1378
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
394 LOG_PURGE_UNKNOWN_ERR = 1379
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
395 RELAY_LOG_INIT = 1380
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
396 NO_BINARY_LOGGING = 1381
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
397 RESERVED_SYNTAX = 1382
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
398 WSAS_FAILED = 1383
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
399 DIFF_GROUPS_PROC = 1384
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
400 NO_GROUP_FOR_PROC = 1385
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
401 ORDER_WITH_PROC = 1386
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
402 LOGGING_PROHIBIT_CHANGING_OF = 1387
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
403 NO_FILE_MAPPING = 1388
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
404 WRONG_MAGIC = 1389
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
405 PS_MANY_PARAM = 1390
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
406 KEY_PART_0 = 1391
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
407 VIEW_CHECKSUM = 1392
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
408 VIEW_MULTIUPDATE = 1393
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
409 VIEW_NO_INSERT_FIELD_LIST = 1394
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
410 VIEW_DELETE_MERGE_VIEW = 1395
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
411 CANNOT_USER = 1396
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
412 XAER_NOTA = 1397
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
413 XAER_INVAL = 1398
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
414 XAER_RMFAIL = 1399
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
415 XAER_OUTSIDE = 1400
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
416 XAER_RMERR = 1401
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
417 XA_RBROLLBACK = 1402
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
418 NONEXISTING_PROC_GRANT = 1403
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
419 PROC_AUTO_GRANT_FAIL = 1404
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
420 PROC_AUTO_REVOKE_FAIL = 1405
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
421 DATA_TOO_LONG = 1406
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
422 SP_BAD_SQLSTATE = 1407
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
423 STARTUP = 1408
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
424 LOAD_FROM_FIXED_SIZE_ROWS_TO_VAR = 1409
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
425 CANT_CREATE_USER_WITH_GRANT = 1410
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
426 WRONG_VALUE_FOR_TYPE = 1411
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
427 TABLE_DEF_CHANGED = 1412
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
428 SP_DUP_HANDLER = 1413
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
429 SP_NOT_VAR_ARG = 1414
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
430 SP_NO_RETSET = 1415
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
431 CANT_CREATE_GEOMETRY_OBJECT = 1416
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
432 FAILED_ROUTINE_BREAK_BINLOG = 1417
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
433 BINLOG_UNSAFE_ROUTINE = 1418
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
434 BINLOG_CREATE_ROUTINE_NEED_SUPER = 1419
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
435 EXEC_STMT_WITH_OPEN_CURSOR = 1420
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
436 STMT_HAS_NO_OPEN_CURSOR = 1421
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
437 COMMIT_NOT_ALLOWED_IN_SF_OR_TRG = 1422
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
438 NO_DEFAULT_FOR_VIEW_FIELD = 1423
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
439 SP_NO_RECURSION = 1424
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
440 TOO_BIG_SCALE = 1425
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
441 TOO_BIG_PRECISION = 1426
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
442 M_BIGGER_THAN_D = 1427
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
443 WRONG_LOCK_OF_SYSTEM_TABLE = 1428
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
444 CONNECT_TO_FOREIGN_DATA_SOURCE = 1429
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
445 QUERY_ON_FOREIGN_DATA_SOURCE = 1430
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
446 FOREIGN_DATA_SOURCE_DOESNT_EXIST = 1431
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
447 FOREIGN_DATA_STRING_INVALID_CANT_CREATE = 1432
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
448 FOREIGN_DATA_STRING_INVALID = 1433
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
449 CANT_CREATE_FEDERATED_TABLE = 1434
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
450 TRG_IN_WRONG_SCHEMA = 1435
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
451 STACK_OVERRUN_NEED_MORE = 1436
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
452 TOO_LONG_BODY = 1437
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
453 WARN_CANT_DROP_DEFAULT_KEYCACHE = 1438
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
454 TOO_BIG_DISPLAYWIDTH = 1439
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
455 XAER_DUPID = 1440
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
456 DATETIME_FUNCTION_OVERFLOW = 1441
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
457 CANT_UPDATE_USED_TABLE_IN_SF_OR_TRG = 1442
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
458 VIEW_PREVENT_UPDATE = 1443
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
459 PS_NO_RECURSION = 1444
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
460 SP_CANT_SET_AUTOCOMMIT = 1445
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
461 MALFORMED_DEFINER = 1446
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
462 VIEW_FRM_NO_USER = 1447
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
463 VIEW_OTHER_USER = 1448
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
464 NO_SUCH_USER = 1449
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
465 FORBID_SCHEMA_CHANGE = 1450
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
466 ROW_IS_REFERENCED_2 = 1451
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
467 NO_REFERENCED_ROW_2 = 1452
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
468 SP_BAD_VAR_SHADOW = 1453
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
469 TRG_NO_DEFINER = 1454
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
470 OLD_FILE_FORMAT = 1455
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
471 SP_RECURSION_LIMIT = 1456
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
472 SP_PROC_TABLE_CORRUPT = 1457
8
fa8974a41c76 New error handling code, plus some small fixes from 1.2
adustman
parents: 0
diff changeset
473 SP_WRONG_NAME = 1458
fa8974a41c76 New error handling code, plus some small fixes from 1.2
adustman
parents: 0
diff changeset
474 TABLE_NEEDS_UPGRADE = 1459
fa8974a41c76 New error handling code, plus some small fixes from 1.2
adustman
parents: 0
diff changeset
475 SP_NO_AGGREGATE = 1460
fa8974a41c76 New error handling code, plus some small fixes from 1.2
adustman
parents: 0
diff changeset
476 MAX_PREPARED_STMT_COUNT_REACHED = 1461
fa8974a41c76 New error handling code, plus some small fixes from 1.2
adustman
parents: 0
diff changeset
477 VIEW_RECURSIVE = 1462
fa8974a41c76 New error handling code, plus some small fixes from 1.2
adustman
parents: 0
diff changeset
478 NON_GROUPING_FIELD_USED = 1463
fa8974a41c76 New error handling code, plus some small fixes from 1.2
adustman
parents: 0
diff changeset
479 TABLE_CANT_HANDLE_SPKEYS = 1464
fa8974a41c76 New error handling code, plus some small fixes from 1.2
adustman
parents: 0
diff changeset
480 NO_TRIGGERS_ON_SYSTEM_SCHEMA = 1465
fa8974a41c76 New error handling code, plus some small fixes from 1.2
adustman
parents: 0
diff changeset
481 USERNAME = 1466
fa8974a41c76 New error handling code, plus some small fixes from 1.2
adustman
parents: 0
diff changeset
482 HOSTNAME = 1467
fa8974a41c76 New error handling code, plus some small fixes from 1.2
adustman
parents: 0
diff changeset
483 WRONG_STRING_LENGTH = 1468
fa8974a41c76 New error handling code, plus some small fixes from 1.2
adustman
parents: 0
diff changeset
484 ERROR_LAST = 1468