diff options
Diffstat (limited to 'src/libstore/db.hh')
-rw-r--r-- | src/libstore/db.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/db.hh b/src/libstore/db.hh index 76afc1d3b0e2..b7ebd446793d 100644 --- a/src/libstore/db.hh +++ b/src/libstore/db.hh @@ -64,7 +64,7 @@ public: void open(const string & path); void close(); - TableId openTable(const string & table); + TableId openTable(const string & table, bool sorted = false); bool queryString(const Transaction & txn, TableId table, const string & key, string & data); @@ -83,7 +83,7 @@ public: const string & key); void enumTable(const Transaction & txn, TableId table, - Strings & keys); + Strings & keys, const string & keyPrefix = ""); }; |