0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-07-17 18:45:10 +00:00
Files
libsql/libsql-storage-server/src/fdb_store.rs
Avinash Sajjanshetty b988125ec0 fix: prevent incorrect range queries when searching for a page version (#1528)
It is important to verify that the data we got from Foundation DB matches with what we
want, since we are doing a range query.

for example, say we searched for ('db_name42', 10, 20). If this page does not exist, then
it could match with ('db_name41', 10, 20) or with ('db_name42', 9, 20) since it does
lexicographic search.
2024-07-02 16:58:36 +00:00

6.1 KiB