Main Page
Related Pages
Modules
Data Structures
Files
File List
Globals
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
aerospike
as_status.h
Go to the documentation of this file.
1
/*
2
* Copyright 2008-2016 Aerospike, Inc.
3
*
4
* Portions may be licensed to Aerospike, Inc. under one or more contributor
5
* license agreements.
6
*
7
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
8
* use this file except in compliance with the License. You may obtain a copy of
9
* the License at http://www.apache.org/licenses/LICENSE-2.0
10
*
11
* Unless required by applicable law or agreed to in writing, software
12
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
* License for the specific language governing permissions and limitations under
15
* the License.
16
*/
17
#pragma once
18
19
#ifdef __cplusplus
20
extern
"C"
{
21
#endif
22
23
/*******************************************************************************
24
* TYPES
25
******************************************************************************/
26
27
/**
28
* Status codes used as return values as as_error.code values.
29
*/
30
typedef
enum
as_status_e {
31
32
/***************************************************************************
33
* Client Errors
34
**************************************************************************/
35
/**
36
* Synchronous connection error.
37
*/
38
AEROSPIKE_ERR_CONNECTION
= -10,
39
40
/**
41
* Node invalid or could not be found.
42
*/
43
AEROSPIKE_ERR_TLS_ERROR
= -9,
44
45
/**
46
* Node invalid or could not be found.
47
*/
48
AEROSPIKE_ERR_INVALID_NODE
= -8,
49
50
/**
51
* Asynchronous connection error.
52
*/
53
AEROSPIKE_ERR_NO_MORE_CONNECTIONS
= -7,
54
55
/**
56
* Asynchronous connection error.
57
*/
58
AEROSPIKE_ERR_ASYNC_CONNECTION
= -6,
59
60
/**
61
* Query or scan was aborted in user's callback.
62
*/
63
AEROSPIKE_ERR_CLIENT_ABORT
= -5,
64
65
/**
66
* Host name could not be found in DNS lookup.
67
*/
68
AEROSPIKE_ERR_INVALID_HOST
= -4,
69
70
/**
71
* No more records available when parsing batch, scan or query records.
72
*/
73
AEROSPIKE_NO_MORE_RECORDS
= -3,
74
75
/**
76
* Invalid client API parameter.
77
*/
78
AEROSPIKE_ERR_PARAM
= -2,
79
80
/**
81
* Generic client API usage error.
82
*/
83
AEROSPIKE_ERR_CLIENT
= -1,
84
85
/**
86
* Deprecated. Generic client error. Keep for legacy reasons.
87
*/
88
AEROSPIKE_ERR
= -1,
89
90
/***************************************************************************
91
* Success
92
**************************************************************************/
93
94
/**
95
* Generic success.
96
*/
97
AEROSPIKE_OK
= 0,
98
99
/***************************************************************************
100
* Server Errors
101
**************************************************************************/
102
103
/**
104
* Generic error returned by server.
105
*/
106
AEROSPIKE_ERR_SERVER
= 1,
107
108
/**
109
* Record does not exist in database. May be returned by read, or write
110
* with policy AS_POLICY_EXISTS_UPDATE.
111
*/
112
AEROSPIKE_ERR_RECORD_NOT_FOUND
= 2,
113
114
/**
115
* Generation of record in database does not satisfy write policy.
116
*/
117
AEROSPIKE_ERR_RECORD_GENERATION
= 3,
118
119
/**
120
* Request protocol invalid, or invalid protocol field.
121
*/
122
AEROSPIKE_ERR_REQUEST_INVALID
= 4,
123
124
/**
125
* Record already exists. May be returned by write with policy
126
* AS_POLICY_EXISTS_CREATE.
127
*/
128
AEROSPIKE_ERR_RECORD_EXISTS
= 5,
129
130
/**
131
* Bin already exists.
132
*/
133
AEROSPIKE_ERR_BIN_EXISTS
= 6,
134
135
/**
136
* A cluster state change occurred during the request. This may also be
137
* returned by scan operations with the fail_on_cluster_change flag set.
138
*/
139
AEROSPIKE_ERR_CLUSTER_CHANGE
= 7,
140
141
/**
142
* The server node is running out of memory and/or storage device space
143
* reserved for the specified namespace.
144
*/
145
AEROSPIKE_ERR_SERVER_FULL
= 8,
146
147
/**
148
* Request timed out. Can be triggered by client or server.
149
*/
150
AEROSPIKE_ERR_TIMEOUT
= 9,
151
152
/**
153
* XDR is not available for the cluster.
154
*/
155
AEROSPIKE_ERR_NO_XDR
= 10,
156
157
/**
158
* Generic cluster discovery & connection error.
159
*/
160
AEROSPIKE_ERR_CLUSTER
= 11,
161
162
/**
163
* Bin modification operation can't be done on an existing bin due to its
164
* value type.
165
*/
166
AEROSPIKE_ERR_BIN_INCOMPATIBLE_TYPE
= 12,
167
168
/**
169
* Record being (re-)written can't fit in a storage write block.
170
*/
171
AEROSPIKE_ERR_RECORD_TOO_BIG
= 13,
172
173
/**
174
* Too may concurrent requests for one record - a "hot-key" situation.
175
*/
176
AEROSPIKE_ERR_RECORD_BUSY
= 14,
177
178
/**
179
* Scan aborted by user.
180
*/
181
AEROSPIKE_ERR_SCAN_ABORTED
= 15,
182
183
/**
184
* Sometimes our doc, or our customers wishes, get ahead of us. We may have
185
* processed something that the server is not ready for (unsupported feature).
186
*/
187
AEROSPIKE_ERR_UNSUPPORTED_FEATURE
= 16,
188
189
/**
190
* Bin-level replace-only supported on server but not on client.
191
*/
192
AEROSPIKE_ERR_BIN_NOT_FOUND
= 17,
193
194
/**
195
* The server node's storage device(s) can't keep up with the write load.
196
*/
197
AEROSPIKE_ERR_DEVICE_OVERLOAD
= 18,
198
199
/**
200
* Record key sent with transaction did not match key stored on server.
201
*/
202
AEROSPIKE_ERR_RECORD_KEY_MISMATCH
= 19,
203
204
/**
205
* Namespace in request not found on server.
206
*/
207
AEROSPIKE_ERR_NAMESPACE_NOT_FOUND
= 20,
208
209
/**
210
* Sent too-long bin name (should be impossible in this client) or exceeded
211
* namespace's bin name quota.
212
*/
213
AEROSPIKE_ERR_BIN_NAME
= 21,
214
215
/**
216
* Operation not allowed at this time.
217
*/
218
AEROSPIKE_ERR_FAIL_FORBIDDEN
= 22,
219
220
AEROSPIKE_ERR_FAIL_ELEMENT_NOT_FOUND
= 23,
221
222
AEROSPIKE_ERR_FAIL_ELEMENT_EXISTS
= 24,
223
224
/**
225
* There are no more records left for query.
226
*/
227
AEROSPIKE_QUERY_END
= 50,
228
229
/**
230
* Security functionality not supported by connected server.
231
*/
232
AEROSPIKE_SECURITY_NOT_SUPPORTED
= 51,
233
234
/**
235
* Security functionality not enabled by connected server.
236
*/
237
AEROSPIKE_SECURITY_NOT_ENABLED
= 52,
238
239
/**
240
* Security type not supported by connected server.
241
*/
242
AEROSPIKE_SECURITY_SCHEME_NOT_SUPPORTED
= 53,
243
244
/**
245
* Administration command is invalid.
246
*/
247
AEROSPIKE_INVALID_COMMAND
= 54,
248
249
/**
250
* Administration field is invalid.
251
*/
252
AEROSPIKE_INVALID_FIELD
= 55,
253
254
/**
255
* Security protocol not followed.
256
*/
257
AEROSPIKE_ILLEGAL_STATE
= 56,
258
259
/**
260
* User name is invalid.
261
*/
262
AEROSPIKE_INVALID_USER
= 60,
263
264
/**
265
* User was previously created.
266
*/
267
AEROSPIKE_USER_ALREADY_EXISTS
= 61,
268
269
/**
270
* Password is invalid.
271
*/
272
AEROSPIKE_INVALID_PASSWORD
= 62,
273
274
/**
275
* Password has expired.
276
*/
277
AEROSPIKE_EXPIRED_PASSWORD
= 63,
278
279
/**
280
* Forbidden password (e.g. recently used)
281
*/
282
AEROSPIKE_FORBIDDEN_PASSWORD
= 64,
283
284
/**
285
* Security credential is invalid.
286
*/
287
AEROSPIKE_INVALID_CREDENTIAL
= 65,
288
289
/**
290
* Role name is invalid.
291
*/
292
AEROSPIKE_INVALID_ROLE
= 70,
293
294
/**
295
* Role already exists.
296
*/
297
AEROSPIKE_ROLE_ALREADY_EXISTS
= 71,
298
299
/**
300
* Privilege is invalid.
301
*/
302
AEROSPIKE_INVALID_PRIVILEGE
= 72,
303
304
/**
305
* User must be authentication before performing database operations.
306
*/
307
AEROSPIKE_NOT_AUTHENTICATED
= 80,
308
309
/**
310
* User does not possess the required role to perform the database operation.
311
*/
312
AEROSPIKE_ROLE_VIOLATION
= 81,
313
314
/**
315
* Generic UDF error.
316
*/
317
AEROSPIKE_ERR_UDF
= 100,
318
319
/**
320
* The requested item in a large collection was not found.
321
*/
322
AEROSPIKE_ERR_LARGE_ITEM_NOT_FOUND
= 125,
323
324
/**
325
* Batch functionality has been disabled.
326
*/
327
AEROSPIKE_ERR_BATCH_DISABLED
= 150,
328
329
/**
330
* Batch max requests have been exceeded.
331
*/
332
AEROSPIKE_ERR_BATCH_MAX_REQUESTS_EXCEEDED
= 151,
333
334
/**
335
* All batch queues are full.
336
*/
337
AEROSPIKE_ERR_BATCH_QUEUES_FULL
= 152,
338
339
/**
340
* Invalid/Unsupported GeoJSON
341
*/
342
AEROSPIKE_ERR_GEO_INVALID_GEOJSON
= 160,
343
344
/**
345
* Index found.
346
*/
347
AEROSPIKE_ERR_INDEX_FOUND
= 200,
348
349
/**
350
* Index not found
351
*/
352
AEROSPIKE_ERR_INDEX_NOT_FOUND
= 201,
353
354
/**
355
* Index is out of memory
356
*/
357
AEROSPIKE_ERR_INDEX_OOM
= 202,
358
359
/**
360
* Unable to read the index.
361
*/
362
AEROSPIKE_ERR_INDEX_NOT_READABLE
= 203,
363
364
/**
365
* Generic secondary index error.
366
*/
367
AEROSPIKE_ERR_INDEX
= 204,
368
369
/**
370
* Index name is too long.
371
*/
372
AEROSPIKE_ERR_INDEX_NAME_MAXLEN
= 205,
373
374
/**
375
* System already has maximum allowed indices.
376
*/
377
AEROSPIKE_ERR_INDEX_MAXCOUNT
= 206,
378
379
/**
380
* Query was aborted.
381
*/
382
AEROSPIKE_ERR_QUERY_ABORTED
= 210,
383
384
/**
385
* Query processing queue is full.
386
*/
387
AEROSPIKE_ERR_QUERY_QUEUE_FULL
= 211,
388
389
/**
390
* Secondary index query timed out on server.
391
*/
392
AEROSPIKE_ERR_QUERY_TIMEOUT
= 212,
393
394
/**
395
* Generic query error.
396
*/
397
AEROSPIKE_ERR_QUERY
= 213,
398
399
/***************************************************************************
400
* UDF OPERATIONS
401
**************************************************************************/
402
403
/**
404
* UDF does not exist.
405
*/
406
AEROSPIKE_ERR_UDF_NOT_FOUND
= 1301,
407
/**
408
* LUA file does not exist.
409
*/
410
AEROSPIKE_ERR_LUA_FILE_NOT_FOUND
= 1302,
411
412
/***************************************************************************
413
* Large Data Type (LDT) OPERATIONS
414
**************************************************************************/
415
416
/** Internal LDT error. */
417
AEROSPIKE_ERR_LDT_INTERNAL
= 1400,
418
419
/** LDT item not found */
420
AEROSPIKE_ERR_LDT_NOT_FOUND
= 1401,
421
422
/** Unique key violation: Duplicated item inserted when 'unique key" was set.*/
423
AEROSPIKE_ERR_LDT_UNIQUE_KEY
= 1402,
424
425
/** General error during insert operation. */
426
AEROSPIKE_ERR_LDT_INSERT
= 1403,
427
428
/** General error during search operation. */
429
AEROSPIKE_ERR_LDT_SEARCH
= 1404,
430
431
/** General error during delete operation. */
432
AEROSPIKE_ERR_LDT_DELETE
= 1405,
433
434
435
/** General input parameter error. */
436
AEROSPIKE_ERR_LDT_INPUT_PARM
= 1409,
437
438
// -------------------------------------------------
439
440
/** LDT Type mismatch for this bin. */
441
AEROSPIKE_ERR_LDT_TYPE_MISMATCH
= 1410,
442
443
/** The supplied LDT bin name is null. */
444
AEROSPIKE_ERR_LDT_NULL_BIN_NAME
= 1411,
445
446
/** The supplied LDT bin name must be a string. */
447
AEROSPIKE_ERR_LDT_BIN_NAME_NOT_STRING
= 1412,
448
449
/** The supplied LDT bin name exceeded the 14 char limit. */
450
AEROSPIKE_ERR_LDT_BIN_NAME_TOO_LONG
= 1413,
451
452
/** Internal Error: too many open records at one time. */
453
AEROSPIKE_ERR_LDT_TOO_MANY_OPEN_SUBRECS
= 1414,
454
455
/** Internal Error: Top Record not found. */
456
AEROSPIKE_ERR_LDT_TOP_REC_NOT_FOUND
= 1415,
457
458
/** Internal Error: Sub Record not found. */
459
AEROSPIKE_ERR_LDT_SUB_REC_NOT_FOUND
= 1416,
460
461
/** LDT Bin does not exist. */
462
AEROSPIKE_ERR_LDT_BIN_DOES_NOT_EXIST
= 1417,
463
464
/** Collision: LDT Bin already exists. */
465
AEROSPIKE_ERR_LDT_BIN_ALREADY_EXISTS
= 1418,
466
467
/** LDT control structures in the Top Record are damaged. Cannot proceed. */
468
AEROSPIKE_ERR_LDT_BIN_DAMAGED
= 1419,
469
470
// -------------------------------------------------
471
472
/** Internal Error: LDT Subrecord pool is damaged. */
473
AEROSPIKE_ERR_LDT_SUBREC_POOL_DAMAGED
= 1420,
474
475
/** LDT control structures in the Sub Record are damaged. Cannot proceed. */
476
AEROSPIKE_ERR_LDT_SUBREC_DAMAGED
= 1421,
477
478
/** Error encountered while opening a Sub Record. */
479
AEROSPIKE_ERR_LDT_SUBREC_OPEN
= 1422,
480
481
/** Error encountered while updating a Sub Record. */
482
AEROSPIKE_ERR_LDT_SUBREC_UPDATE
= 1423,
483
484
/** Error encountered while creating a Sub Record. */
485
AEROSPIKE_ERR_LDT_SUBREC_CREATE
= 1424,
486
487
/** Error encountered while deleting a Sub Record. */
488
AEROSPIKE_ERR_LDT_SUBREC_DELETE
= 1425,
489
490
/** Error encountered while closing a Sub Record. */
491
AEROSPIKE_ERR_LDT_SUBREC_CLOSE
= 1426,
492
493
/** Error encountered while updating a TOP Record. */
494
AEROSPIKE_ERR_LDT_TOPREC_UPDATE
= 1427,
495
496
/** Error encountered while creating a TOP Record. */
497
AEROSPIKE_ERR_LDT_TOPREC_CREATE
= 1428,
498
499
// -------------------------------------------------
500
501
/** The filter function name was invalid. */
502
AEROSPIKE_ERR_LDT_FILTER_FUNCTION_BAD
= 1430,
503
504
/** The filter function was not found. */
505
AEROSPIKE_ERR_LDT_FILTER_FUNCTION_NOT_FOUND
= 1431,
506
507
/** The function to extract the Unique Value from a complex object was invalid. */
508
AEROSPIKE_ERR_LDT_KEY_FUNCTION_BAD
= 1432,
509
510
/** The function to extract the Unique Value from a complex object was not found. */
511
AEROSPIKE_ERR_LDT_KEY_FUNCTION_NOT_FOUND
= 1433,
512
513
/** The function to transform an object into a binary form was invalid. */
514
AEROSPIKE_ERR_LDT_TRANS_FUNCTION_BAD
= 1434,
515
516
/** The function to transform an object into a binary form was not found. */
517
AEROSPIKE_ERR_LDT_TRANS_FUNCTION_NOT_FOUND
= 1435,
518
519
/** The function to untransform an object from binary form to live form was invalid. */
520
AEROSPIKE_ERR_LDT_UNTRANS_FUNCTION_BAD
= 1436,
521
522
/** The function to untransform an object from binary form to live form not found. */
523
AEROSPIKE_ERR_LDT_UNTRANS_FUNCTION_NOT_FOUND
= 1437,
524
525
/** The UDF user module name for LDT Overrides was invalid */
526
AEROSPIKE_ERR_LDT_USER_MODULE_BAD
= 1438,
527
528
/** The UDF user module name for LDT Overrides was not found */
529
AEROSPIKE_ERR_LDT_USER_MODULE_NOT_FOUND
= 1439
530
531
}
as_status
;
532
533
#ifdef __cplusplus
534
}
// end extern "C"
535
#endif
AEROSPIKE_ERR_LDT_FILTER_FUNCTION_NOT_FOUND
Definition:
as_status.h:505
AEROSPIKE_ROLE_VIOLATION
Definition:
as_status.h:312
AEROSPIKE_ERR_GEO_INVALID_GEOJSON
Definition:
as_status.h:342
AEROSPIKE_ERR_REQUEST_INVALID
Definition:
as_status.h:122
AEROSPIKE_ERR_INDEX_MAXCOUNT
Definition:
as_status.h:377
AEROSPIKE_ERR_INDEX_NOT_READABLE
Definition:
as_status.h:362
AEROSPIKE_ERR_LDT_FILTER_FUNCTION_BAD
Definition:
as_status.h:502
AEROSPIKE_ERR_RECORD_GENERATION
Definition:
as_status.h:117
AEROSPIKE_ERR_ASYNC_CONNECTION
Definition:
as_status.h:58
AEROSPIKE_ERR_LDT_USER_MODULE_NOT_FOUND
Definition:
as_status.h:529
AEROSPIKE_ERR_LUA_FILE_NOT_FOUND
Definition:
as_status.h:410
AEROSPIKE_SECURITY_NOT_SUPPORTED
Definition:
as_status.h:232
AEROSPIKE_ERR_LDT_BIN_DAMAGED
Definition:
as_status.h:468
AEROSPIKE_ERR_QUERY_QUEUE_FULL
Definition:
as_status.h:387
AEROSPIKE_ERR_LDT_BIN_NAME_TOO_LONG
Definition:
as_status.h:450
AEROSPIKE_ERR_SERVER_FULL
Definition:
as_status.h:145
AEROSPIKE_NOT_AUTHENTICATED
Definition:
as_status.h:307
as_status
as_status
Definition:
as_status.h:30
AEROSPIKE_FORBIDDEN_PASSWORD
Definition:
as_status.h:282
AEROSPIKE_ERR_PARAM
Definition:
as_status.h:78
AEROSPIKE_ERR_QUERY_TIMEOUT
Definition:
as_status.h:392
AEROSPIKE_ERR_RECORD_TOO_BIG
Definition:
as_status.h:171
AEROSPIKE_ERR_LDT_KEY_FUNCTION_NOT_FOUND
Definition:
as_status.h:511
AEROSPIKE_ERR_LDT_SUBREC_UPDATE
Definition:
as_status.h:482
AEROSPIKE_ERR_NO_MORE_CONNECTIONS
Definition:
as_status.h:53
AEROSPIKE_ERR_LDT_UNTRANS_FUNCTION_NOT_FOUND
Definition:
as_status.h:523
AEROSPIKE_ERR_LDT_TOO_MANY_OPEN_SUBRECS
Definition:
as_status.h:453
AEROSPIKE_SECURITY_SCHEME_NOT_SUPPORTED
Definition:
as_status.h:242
AEROSPIKE_ERR_UNSUPPORTED_FEATURE
Definition:
as_status.h:187
AEROSPIKE_ERR_LDT_NOT_FOUND
Definition:
as_status.h:420
AEROSPIKE_ERR_INVALID_HOST
Definition:
as_status.h:68
AEROSPIKE_ERR_LARGE_ITEM_NOT_FOUND
Definition:
as_status.h:322
AEROSPIKE_ERR_RECORD_NOT_FOUND
Definition:
as_status.h:112
AEROSPIKE_INVALID_FIELD
Definition:
as_status.h:252
AEROSPIKE_ERR_LDT_SUBREC_OPEN
Definition:
as_status.h:479
AEROSPIKE_ERR_LDT_KEY_FUNCTION_BAD
Definition:
as_status.h:508
AEROSPIKE_ERR_BATCH_QUEUES_FULL
Definition:
as_status.h:337
AEROSPIKE_ERR_BATCH_DISABLED
Definition:
as_status.h:327
AEROSPIKE_ERR_RECORD_BUSY
Definition:
as_status.h:176
AEROSPIKE_ERR_BIN_NOT_FOUND
Definition:
as_status.h:192
AEROSPIKE_INVALID_CREDENTIAL
Definition:
as_status.h:287
AEROSPIKE_OK
Definition:
as_status.h:97
AEROSPIKE_EXPIRED_PASSWORD
Definition:
as_status.h:277
AEROSPIKE_ERR_TLS_ERROR
Definition:
as_status.h:43
AEROSPIKE_ERR_LDT_TYPE_MISMATCH
Definition:
as_status.h:441
AEROSPIKE_ERR_NO_XDR
Definition:
as_status.h:155
AEROSPIKE_INVALID_PASSWORD
Definition:
as_status.h:272
AEROSPIKE_ERR_LDT_BIN_NAME_NOT_STRING
Definition:
as_status.h:447
AEROSPIKE_ERR_LDT_INTERNAL
Definition:
as_status.h:417
AEROSPIKE_ERR_LDT_SUBREC_POOL_DAMAGED
Definition:
as_status.h:473
AEROSPIKE_ERR_LDT_TOPREC_CREATE
Definition:
as_status.h:497
AEROSPIKE_INVALID_PRIVILEGE
Definition:
as_status.h:302
AEROSPIKE_ERR_LDT_TRANS_FUNCTION_NOT_FOUND
Definition:
as_status.h:517
AEROSPIKE_INVALID_ROLE
Definition:
as_status.h:292
AEROSPIKE_ERR_INDEX_NAME_MAXLEN
Definition:
as_status.h:372
AEROSPIKE_ERR_LDT_UNIQUE_KEY
Definition:
as_status.h:423
AEROSPIKE_ERR_LDT_TOPREC_UPDATE
Definition:
as_status.h:494
AEROSPIKE_ERR_LDT_SUBREC_CREATE
Definition:
as_status.h:485
AEROSPIKE_ERR_LDT_SEARCH
Definition:
as_status.h:429
AEROSPIKE_ERR_LDT_INPUT_PARM
Definition:
as_status.h:436
AEROSPIKE_ERR_LDT_UNTRANS_FUNCTION_BAD
Definition:
as_status.h:520
AEROSPIKE_ERR_DEVICE_OVERLOAD
Definition:
as_status.h:197
AEROSPIKE_ERR_RECORD_EXISTS
Definition:
as_status.h:128
AEROSPIKE_ERR_INDEX_FOUND
Definition:
as_status.h:347
AEROSPIKE_SECURITY_NOT_ENABLED
Definition:
as_status.h:237
AEROSPIKE_ERR_TIMEOUT
Definition:
as_status.h:150
AEROSPIKE_INVALID_USER
Definition:
as_status.h:262
AEROSPIKE_ERR_FAIL_FORBIDDEN
Definition:
as_status.h:218
AEROSPIKE_ERR_LDT_NULL_BIN_NAME
Definition:
as_status.h:444
AEROSPIKE_ERR_CLIENT_ABORT
Definition:
as_status.h:63
AEROSPIKE_ERR_FAIL_ELEMENT_NOT_FOUND
Definition:
as_status.h:220
AEROSPIKE_ERR_LDT_SUBREC_DELETE
Definition:
as_status.h:488
AEROSPIKE_ERR_BIN_NAME
Definition:
as_status.h:213
AEROSPIKE_ERR_INDEX
Definition:
as_status.h:367
AEROSPIKE_ERR_RECORD_KEY_MISMATCH
Definition:
as_status.h:202
AEROSPIKE_ILLEGAL_STATE
Definition:
as_status.h:257
AEROSPIKE_NO_MORE_RECORDS
Definition:
as_status.h:73
AEROSPIKE_ERR_SCAN_ABORTED
Definition:
as_status.h:181
AEROSPIKE_ERR_FAIL_ELEMENT_EXISTS
Definition:
as_status.h:222
AEROSPIKE_ERR_INDEX_OOM
Definition:
as_status.h:357
AEROSPIKE_ERR_CLUSTER
Definition:
as_status.h:160
AEROSPIKE_ERR_SERVER
Definition:
as_status.h:106
AEROSPIKE_ERR_LDT_BIN_ALREADY_EXISTS
Definition:
as_status.h:465
AEROSPIKE_ROLE_ALREADY_EXISTS
Definition:
as_status.h:297
AEROSPIKE_ERR_UDF_NOT_FOUND
Definition:
as_status.h:406
AEROSPIKE_ERR_QUERY
Definition:
as_status.h:397
AEROSPIKE_ERR
Definition:
as_status.h:88
AEROSPIKE_USER_ALREADY_EXISTS
Definition:
as_status.h:267
AEROSPIKE_ERR_UDF
Definition:
as_status.h:317
AEROSPIKE_ERR_LDT_SUBREC_CLOSE
Definition:
as_status.h:491
AEROSPIKE_ERR_CLUSTER_CHANGE
Definition:
as_status.h:139
AEROSPIKE_ERR_CLIENT
Definition:
as_status.h:83
AEROSPIKE_ERR_INDEX_NOT_FOUND
Definition:
as_status.h:352
AEROSPIKE_ERR_LDT_BIN_DOES_NOT_EXIST
Definition:
as_status.h:462
AEROSPIKE_ERR_LDT_DELETE
Definition:
as_status.h:432
AEROSPIKE_ERR_LDT_SUBREC_DAMAGED
Definition:
as_status.h:476
AEROSPIKE_ERR_LDT_INSERT
Definition:
as_status.h:426
AEROSPIKE_ERR_LDT_TRANS_FUNCTION_BAD
Definition:
as_status.h:514
AEROSPIKE_ERR_BIN_EXISTS
Definition:
as_status.h:133
AEROSPIKE_ERR_LDT_SUB_REC_NOT_FOUND
Definition:
as_status.h:459
AEROSPIKE_ERR_BIN_INCOMPATIBLE_TYPE
Definition:
as_status.h:166
AEROSPIKE_ERR_QUERY_ABORTED
Definition:
as_status.h:382
AEROSPIKE_ERR_LDT_TOP_REC_NOT_FOUND
Definition:
as_status.h:456
AEROSPIKE_QUERY_END
Definition:
as_status.h:227
AEROSPIKE_ERR_LDT_USER_MODULE_BAD
Definition:
as_status.h:526
AEROSPIKE_ERR_CONNECTION
Definition:
as_status.h:38
AEROSPIKE_INVALID_COMMAND
Definition:
as_status.h:247
AEROSPIKE_ERR_NAMESPACE_NOT_FOUND
Definition:
as_status.h:207
AEROSPIKE_ERR_BATCH_MAX_REQUESTS_EXCEEDED
Definition:
as_status.h:332
AEROSPIKE_ERR_INVALID_NODE
Definition:
as_status.h:48