mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-10 15:02:56 +00:00
Fix list_rels visibility check: some relations after initdb may have lsn equal to last_valid_lsn()
This commit is contained in:
@@ -168,7 +168,7 @@ impl ObjectStore for RocksObjectStore {
|
||||
{
|
||||
break;
|
||||
}
|
||||
if key.lsn < lsn {
|
||||
if key.lsn <= lsn {
|
||||
// visible in this snapshot
|
||||
rels.insert(rel_tag);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user