| 789 | return KeyRef(d, s); |
| 790 | } |
| 791 | void insertFragment(KeyValueRef kv, uint32_t index, int seekResult) { |
| 792 | Value v = encodeKVFragment(kv, index); |
| 793 | db.checkError("BtreeInsert", sqlite3BtreeInsert(cursor, v.begin(), v.size(), nullptr, 0, 0, 0, seekResult)); |
| 794 | } |
| 795 | void remove() { db.checkError("BtreeDelete", sqlite3BtreeDelete(cursor)); } |
| 796 | void set(KeyValueRef kv) { |
| 797 | if (db.fragment_values) { |
nothing calls this directly
no test coverage detected