summaryrefslogtreecommitdiffstats
path: root/tests/auto/qsqltablemodel
diff options
context:
space:
mode:
authorBill King <bill.king@nokia.com>2009-10-14 03:54:05 (GMT)
committerBill King <bill.king@nokia.com>2009-10-14 03:57:07 (GMT)
commitc03d97cde16a398df8b4895672a94a015bf5ca5b (patch)
tree9570a348a340b084d87cf75e1e5ae766988c0c4c /tests/auto/qsqltablemodel
parent9d58da36c9790e60aead8de4477c80332d3e0a62 (diff)
downloadQt-c03d97cde16a398df8b4895672a94a015bf5ca5b.zip
Qt-c03d97cde16a398df8b4895672a94a015bf5ca5b.tar.gz
Qt-c03d97cde16a398df8b4895672a94a015bf5ca5b.tar.bz2
Remove excess spam from autotests when postgresql creates primary indexes.
Diffstat (limited to 'tests/auto/qsqltablemodel')
-rw-r--r--tests/auto/qsqltablemodel/tst_qsqltablemodel.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/auto/qsqltablemodel/tst_qsqltablemodel.cpp b/tests/auto/qsqltablemodel/tst_qsqltablemodel.cpp
index 5405cb6..653d944 100644
--- a/tests/auto/qsqltablemodel/tst_qsqltablemodel.cpp
+++ b/tests/auto/qsqltablemodel/tst_qsqltablemodel.cpp
@@ -143,6 +143,8 @@ void tst_QSqlTableModel::dropTestTables()
for (int i = 0; i < dbs.dbNames.count(); ++i) {
QSqlDatabase db = QSqlDatabase::database(dbs.dbNames.at(i));
QSqlQuery q(db);
+ if(tst_Databases::isPostgreSQL(db))
+ QVERIFY_SQL( q, exec("set client_min_messages='warning'"));
QStringList tableNames;
tableNames << qTableName("test")
@@ -659,6 +661,9 @@ void tst_QSqlTableModel::primaryKeyOrder()
QSqlQuery q(db);
+ if(tst_Databases::isPostgreSQL(db))
+ QVERIFY_SQL( q, exec("set client_min_messages='warning'"));
+
QVERIFY_SQL( q, exec("create table "+qTableName("foo")+"(a varchar(20), id int not null primary key, b varchar(20))"));
QSqlTableModel model(0, db);