diff options
Diffstat (limited to 'common/storage')
-rw-r--r-- | common/storage/entitystore.cpp | 2 | ||||
-rw-r--r-- | common/storage/entitystore.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/common/storage/entitystore.cpp b/common/storage/entitystore.cpp index 230dbc7..4fe7e3b 100644 --- a/common/storage/entitystore.cpp +++ b/common/storage/entitystore.cpp | |||
@@ -443,7 +443,7 @@ QVector<QByteArray> EntityStore::fullScan(const QByteArray &type) | |||
443 | return keys.toList().toVector(); | 443 | return keys.toList().toVector(); |
444 | } | 444 | } |
445 | 445 | ||
446 | QVector<QByteArray> EntityStore::indexLookup(const QByteArray &type, const QueryBase &query, QSet<QByteArray> &appliedFilters, QByteArray &appliedSorting) | 446 | QVector<QByteArray> EntityStore::indexLookup(const QByteArray &type, const QueryBase &query, QSet<QByteArrayList> &appliedFilters, QByteArray &appliedSorting) |
447 | { | 447 | { |
448 | if (!d->exists()) { | 448 | if (!d->exists()) { |
449 | SinkTraceCtx(d->logCtx) << "Database is not existing: " << type; | 449 | SinkTraceCtx(d->logCtx) << "Database is not existing: " << type; |
diff --git a/common/storage/entitystore.h b/common/storage/entitystore.h index d79a0b5..ffa70b9 100644 --- a/common/storage/entitystore.h +++ b/common/storage/entitystore.h | |||
@@ -57,7 +57,7 @@ public: | |||
57 | bool hasTransaction() const; | 57 | bool hasTransaction() const; |
58 | 58 | ||
59 | QVector<QByteArray> fullScan(const QByteArray &type); | 59 | QVector<QByteArray> fullScan(const QByteArray &type); |
60 | QVector<QByteArray> indexLookup(const QByteArray &type, const QueryBase &query, QSet<QByteArray> &appliedFilters, QByteArray &appliedSorting); | 60 | QVector<QByteArray> indexLookup(const QByteArray &type, const QueryBase &query, QSet<QByteArrayList> &appliedFilters, QByteArray &appliedSorting); |
61 | QVector<QByteArray> indexLookup(const QByteArray &type, const QByteArray &property, const QVariant &value); | 61 | QVector<QByteArray> indexLookup(const QByteArray &type, const QByteArray &property, const QVariant &value); |
62 | void indexLookup(const QByteArray &type, const QByteArray &property, const QVariant &value, const std::function<void(const QByteArray &uid)> &callback); | 62 | void indexLookup(const QByteArray &type, const QByteArray &property, const QVariant &value, const std::function<void(const QByteArray &uid)> &callback); |
63 | template<typename EntityType, typename PropertyType> | 63 | template<typename EntityType, typename PropertyType> |