bdafeb313c
1.9.1 02-March-2013 --------------------------------------------- - Disable query cache for Sqlite. - Handle missing mysqld better. - Ignore my.cnf settings when using the internal MySQL server. 1.9.0 23-December-2012 --------------------------------------------- - Respect collection cache policy refresh interval for collection tree sync. - Fix initialization of PostgreSQL database. - Correctly count items flags in virtual collections. - Notify parent virtual collections about item changes. - Require CMake >= 2.8.8. - Remove dependency to Automoc4. - Support Qt 5. 1.8.80 12-November-2012 --------------------------------------------- - Recover from lost external payload files. - Improve the virtual collections handling. - Notify clients about database schema updates. - Reduce item access time updates. - Make use of referential integrity if supported by the database backend. - Add prepared query cache. - Many code and queries optimizations. 1.8.1 14-October-2012 --------------------------------------------- - Fix payload loss on some move/copy scenarios. - Improve error reporting for failed item retrievals. 1.8.0 25-July-2012 --------------------------------------------- - Fix deadlock in ad-hoc Nepomuk searches. 1.7.95 11-July-2012 --------------------------------------------- - Fix Nepomuk queries getting stuck if Nepomuk service crashes. - Fix unecessary remote retrieval of already cached item parts. - Reset RID/RREV during cross-resource collection moves. - Increase timeout for remote item retrieval. 1.7.90 08-June-2012 --------------------------------------------- - Fix handling of large SPARQL queries. - Support cleanup of orphaned resources in the consistency checker. - Support compilation with Clang.
24 lines
947 B
C++
24 lines
947 B
C++
$NetBSD: patch-server_src_nepomuk_queryserviceclient.cpp,v 1.2 2013/04/03 07:37:12 markd Exp $
|
|
|
|
Workaround for gcc4.[12] https://bugs.kde.org/show_bug.cgi?id=295813
|
|
|
|
--- server/src/nepomuk/queryserviceclient.cpp.orig 2013-03-02 11:51:18.000000000 +0000
|
|
+++ server/src/nepomuk/queryserviceclient.cpp
|
|
@@ -159,7 +159,7 @@ Nepomuk::Query::QueryServiceClient::~Que
|
|
}
|
|
|
|
|
|
-bool Nepomuk::Query::QueryServiceClient::query( const QString& query, const QHash<QString, QString> &encodedRps )
|
|
+bool Nepomuk::Query::QueryServiceClient::query( const QString& query, const hss &encodedRps )
|
|
{
|
|
close();
|
|
|
|
@@ -181,7 +181,7 @@ bool Nepomuk::Query::QueryServiceClient:
|
|
|
|
|
|
|
|
-bool Nepomuk::Query::QueryServiceClient::blockingQuery( const QString& q, const QHash<QString, QString> &encodedRps )
|
|
+bool Nepomuk::Query::QueryServiceClient::blockingQuery( const QString& q, const hss &encodedRps )
|
|
{
|
|
if( query( q, encodedRps ) ) {
|
|
QEventLoop loop;
|