mirror of
https://github.com/matrix-construct/construct
synced 2024-11-17 15:30:52 +01:00
ircd::db: Better cursor comparison.
This commit is contained in:
parent
5e137c676f
commit
676baec73d
1 changed files with 1 additions and 1 deletions
|
@ -260,5 +260,5 @@ const
|
||||||
if(!row.valid() || !o.row.valid())
|
if(!row.valid() || !o.row.valid())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
return row.its.at(0).key() == o.row.its.at(0).key();
|
return idx->first == o.idx->first;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue