![]() |
#include <aerospike/as_bin.h>
#include <aerospike/as_key.h>
#include <aerospike/as_list.h>
#include <aerospike/as_udf.h>
#include <stdarg.h>
Go to the source code of this file.
Data Structures | |
struct | as_ordering |
struct | as_predicate |
union | as_predicate_value |
struct | as_query |
struct | as_query_bins |
struct | as_query_ordering |
struct | as_query_predicates |
Enumerations | |
enum | as_order { AS_ORDER_ASCENDING = 0, AS_ORDER_DESCENDING = 1 } |
enum | as_predicate_type { AS_PREDICATE_STRING_EQUAL, AS_PREDICATE_INTEGER_EQUAL, AS_PREDICATE_INTEGER_RANGE } |
enum as_order |
Enumerations defining the direction of an ordering.
Enumerator | |
---|---|
AS_ORDER_ASCENDING |
Ascending order |
AS_ORDER_DESCENDING |
bin should be in ascending order |
Definition at line 160 of file as_query.h.
enum as_predicate_type |
The types of predicates supported.
Enumerator | |
---|---|
AS_PREDICATE_STRING_EQUAL |
String Equality Predicate. Requires as_predicate_value.string to be set. |
AS_PREDICATE_INTEGER_EQUAL |
Integer Equality Predicate. Requires as_predicate_value.integer to be set. |
AS_PREDICATE_INTEGER_RANGE |
Integer Range Predicate. Requires as_predicate_value.integer_range to be set. |
Definition at line 112 of file as_query.h.