| 753 | valid = !empty; |
| 754 | } |
| 755 | void moveNext() { |
| 756 | int empty = 1; |
| 757 | db.checkError("BtreeNext", sqlite3BtreeNext(cursor, &empty)); |
| 758 | valid = !empty; |
| 759 | } |
| 760 | void movePrevious() { |
| 761 | int empty = 1; |
| 762 | db.checkError("BtreePrevious", sqlite3BtreePrevious(cursor, &empty)); |
no test coverage detected