aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/db.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstore/db.hh')
-rw-r--r--src/libstore/db.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/db.hh b/src/libstore/db.hh
index 76afc1d3b..b7ebd4467 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 = "");
};