This commit is contained in:
Kallesh B S 2025-03-11 15:53:25 +05:30
parent 7e82150b24
commit 348845fb6e

View File

@ -68,7 +68,7 @@ export class AuthService {
do { do {
rowsBatch = await cursor.getRows(100); // Fetch 100 rows at a time rowsBatch = await cursor.getRows(100); // Fetch 100 rows at a time
crows = rows.concat(rowsBatch); // Append fetched rows to the main array crows = crows.concat(rowsBatch); // Append fetched rows to the main array
} while (rowsBatch.length > 0); } while (rowsBatch.length > 0);
console.log('Rows fetched:', crows); console.log('Rows fetched:', crows);