From a0e25fd220a12edafe346cb7449f71ca8338da97 Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Mon, 16 Sep 2024 08:38:26 -0700 Subject: [PATCH] add all back --- src/main/aerospike.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/main/aerospike.c b/src/main/aerospike.c index e3a0715ec..2a3c1e741 100644 --- a/src/main/aerospike.c +++ b/src/main/aerospike.c @@ -532,15 +532,15 @@ struct module_obj_name_to_creation_method { static struct module_obj_name_to_creation_method module_pyobjects[] = { // TODO: Define macros somewhere {"exception", AerospikeException_New}, - // {"predicates", AerospikePredicates_New}, - // {"Client", (PyObject * (*)(void)) AerospikeClient_Ready}, - // {"Query", (PyObject * (*)(void)) AerospikeQuery_Ready}, - // {"GeoJSON", (PyObject * (*)(void)) AerospikeGeospatial_Ready}, - // {"null", (PyObject * (*)(void)) AerospikeNullObject_Ready}, - // {"CDTWildcard", (PyObject * (*)(void)) AerospikeWildcardObject_Ready}, - // {"CDTInfinite", (PyObject * (*)(void)) AerospikeInfiniteObject_Ready}, - // {"KeyOrderedDict", (PyObject * (*)(void)) AerospikeKeyOrderedDict_Ready}, - // {"Scan", (PyObject * (*)(void)) AerospikeScan_Ready}, + {"predicates", AerospikePredicates_New}, + {"Client", (PyObject * (*)(void)) AerospikeClient_Ready}, + {"Query", (PyObject * (*)(void)) AerospikeQuery_Ready}, + {"GeoJSON", (PyObject * (*)(void)) AerospikeGeospatial_Ready}, + {"null", (PyObject * (*)(void)) AerospikeNullObject_Ready}, + {"CDTWildcard", (PyObject * (*)(void)) AerospikeWildcardObject_Ready}, + {"CDTInfinite", (PyObject * (*)(void)) AerospikeInfiniteObject_Ready}, + {"KeyOrderedDict", (PyObject * (*)(void)) AerospikeKeyOrderedDict_Ready}, + {"Scan", (PyObject * (*)(void)) AerospikeScan_Ready}, }; PyMODINIT_FUNC PyInit_aerospike(void)