Remove cases where all jobs were expected to be in memory.

This commit is contained in:
Greyson Parrelli
2024-07-17 11:58:09 -04:00
committed by Nicholas Tinsley
parent 973dc72cfa
commit 86cf8200b5
10 changed files with 422 additions and 239 deletions

View File

@@ -206,6 +206,10 @@ class SelectBuilderPart2(
return SelectBuilderPart4a(db, columns, tableName, "", arrayOf(), orderBy)
}
fun limit(limit: Int): SelectBuilderPart4b {
return SelectBuilderPart4b(db, columns, tableName, "", arrayOf(), limit.toString())
}
fun run(): Cursor {
return db.query(
SupportSQLiteQueryBuilder