问题 I use the manual pagination feature in Cassandra. client.eachRow(query, params, options, function (n, row) { // Invoked per each row in all the pages console.log("row",row); }, function (err, result) { if(typeof result !== undefined) { pageState = result.pageState; console.log("pagestate output : ", pageState); if(pageState != null) { // } } } ); Say we have 4 row / entries in a table 'test'. When I try to query with fetchsize as '2' It returns two entres with result.pageState then I used the