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