We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63c81be commit bb65579Copy full SHA for bb65579
ext/src/Cassandra/Rows.c
@@ -318,6 +318,7 @@ PHP_METHOD(Rows, nextPageAsync)
318
session = (cassandra_session*) zend_object_store_get_object(self->session TSRMLS_CC);
319
future = cass_session_execute(session->session, (CassStatement*) self->statement->data);
320
321
+ MAKE_STD_ZVAL(self->future_next_page);
322
object_init_ex(self->future_next_page, cassandra_future_rows_ce);
323
future_rows = (cassandra_future_rows*) zend_object_store_get_object(self->future_next_page TSRMLS_CC);
324
0 commit comments