summaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
authorTasuku Suzuki <stasuku@gmail.com>2013-09-21 15:23:16 +0900
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-22 17:05:47 +0200
commit109bf980b37fed405c6c1eb14cb9c83ff897e389 (patch)
treec0c1c006770524dbb98436f4f04cfc16890c310e /tests/auto
parent2d107c20b9670976e0d4a22edc6c3b235e225fa4 (diff)
Fix a bug in QSqlQuery::isNull documentation
the method returns true if there is not such field. Change-Id: I25db8de4561d3e0604f3e64edc1810140ba4aad2 Reviewed-by: Andy Shaw <andy.shaw@digia.com> Reviewed-by: Mark Brand <mabrand@mabrand.nl>
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/sql/kernel/qsqlquery/tst_qsqlquery.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/sql/kernel/qsqlquery/tst_qsqlquery.cpp b/tests/auto/sql/kernel/qsqlquery/tst_qsqlquery.cpp
index 1a100ce706..9098d5b101 100644
--- a/tests/auto/sql/kernel/qsqlquery/tst_qsqlquery.cpp
+++ b/tests/auto/sql/kernel/qsqlquery/tst_qsqlquery.cpp
@@ -1393,6 +1393,9 @@ void tst_QSqlQuery::isNull()
QVERIFY( q.next() );
QVERIFY( !q.isNull( 0 ) );
QVERIFY( !q.isNull( 1 ) );
+
+ // For a non existent field, it should be returning true.
+ QVERIFY(q.isNull(2));
}
/*! TDS specific BIT field test */