![]() |
#include <aerospike/aerospike_index.h>
#include <aerospike/as_bin.h>
#include <aerospike/as_key.h>
#include <aerospike/as_list.h>
#include <aerospike/as_partition_filter.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_predicates |
Enumerations | |
enum | as_order { AS_ORDER_ASCENDING = 0 , AS_ORDER_DESCENDING = 1 } |
enum | as_predicate_type { AS_PREDICATE_EQUAL , AS_PREDICATE_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 254 of file as_query.h.
enum as_predicate_type |
The types of predicates supported.
Enumerator | |
---|---|
AS_PREDICATE_EQUAL | String Equality Predicate. Requires as_predicate_value.string to be set. |
AS_PREDICATE_RANGE |
Definition at line 192 of file as_query.h.