Use a minimal job spec representation in memory.

This commit is contained in:
Greyson Parrelli
2024-07-16 10:53:10 -04:00
committed by Nicholas Tinsley
parent eb59afc33c
commit 973dc72cfa
5 changed files with 340 additions and 142 deletions

View File

@@ -202,6 +202,10 @@ class SelectBuilderPart2(
return SelectBuilderPart3(db, columns, tableName, where, whereArgs)
}
fun orderBy(orderBy: String): SelectBuilderPart4a {
return SelectBuilderPart4a(db, columns, tableName, "", arrayOf(), orderBy)
}
fun run(): Cursor {
return db.query(
SupportSQLiteQueryBuilder