summaryrefslogtreecommitdiffstats
path: root/src/sql/kernel/qsqldriver.h
diff options
context:
space:
mode:
authorMatt Newell <newellm@blur.com>2012-03-22 10:42:56 -0700
committerQt by Nokia <qt-info@nokia.com>2012-03-31 08:40:55 +0200
commitd5e9616e399e68838f99ae4c123930b330bc4221 (patch)
tree0ca966f2a5f6c9dd94de0e7932a2721b77340eea /src/sql/kernel/qsqldriver.h
parent9b423b6e6920250f97b74aeb86f609cf55a5ee22 (diff)
Add payload to QSqlDriver notification with PSQL implementation.
Postgres async notifications can contain a payload parameter that is currently discarded. This patch provides the QSqlDriver api change necessary to deliver a payload with each emitted notification by adding a QVariant parameter to the notification signal. It also provides the implementation for the qsqlpsql driver. The qsql_ibase driver has been updated to reflect the change to the notification signal signature. The eventNotificationPSQL test in the qsqldatabase test has been expanded to test proper payload sending and receiving. All tests/auto/sql/kernel tests have been run with sqllite and postgres with no regressions. Task-number: QTBUG-13500 Change-Id: I9137f6acc8cfca93f45791ca930e0287d93d5d0d Reviewed-by: Mark Brand <mabrand@mabrand.nl>
Diffstat (limited to 'src/sql/kernel/qsqldriver.h')
-rw-r--r--src/sql/kernel/qsqldriver.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sql/kernel/qsqldriver.h b/src/sql/kernel/qsqldriver.h
index 3ca8092e16..cf293cda0f 100644
--- a/src/sql/kernel/qsqldriver.h
+++ b/src/sql/kernel/qsqldriver.h
@@ -122,7 +122,7 @@ public:
Q_SIGNALS:
void notification(const QString &name);
- void notification(const QString &name, QSqlDriver::NotificationSource source);
+ void notification(const QString &name, QSqlDriver::NotificationSource source, const QVariant &payload);
protected:
virtual void setOpen(bool o);