diff options
author | Bill King <bill.king@nokia.com> | 2009-09-02 00:18:38 (GMT) |
---|---|---|
committer | Bill King <bill.king@nokia.com> | 2009-09-02 00:21:48 (GMT) |
commit | 235aea42924013625fc4b7714fba16ef7b1aee60 (patch) | |
tree | 04825e9ede0b1cf8221558d6ea4d5b1cb6380d68 /tests | |
parent | add57539ec7cd24346e26b22a5298da50d81e91b (diff) | |
download | Qt-235aea42924013625fc4b7714fba16ef7b1aee60.zip Qt-235aea42924013625fc4b7714fba16ef7b1aee60.tar.gz Qt-235aea42924013625fc4b7714fba16ef7b1aee60.tar.bz2 |
Fixes mysql not knowing the difference between tables and views.
Task-number: 176267
Reviewed-by: Justin McPherson
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/qsqldatabase/tst_qsqldatabase.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/auto/qsqldatabase/tst_qsqldatabase.cpp b/tests/auto/qsqldatabase/tst_qsqldatabase.cpp index e9a0670..a6d2c26 100644 --- a/tests/auto/qsqldatabase/tst_qsqldatabase.cpp +++ b/tests/auto/qsqldatabase/tst_qsqldatabase.cpp @@ -513,10 +513,6 @@ void tst_QSqlDatabase::tables() QVERIFY(tables.contains(qTableName("qtest"), Qt::CaseInsensitive)); QVERIFY(!tables.contains("sql_features", Qt::CaseInsensitive)); //check for postgres 7.4 internal tables if (views) { - if (db.driverName().startsWith("QMYSQL")) - // MySQL doesn't differentiate between tables and views when calling QSqlDatabase::tables() - // May be fixable by doing a select on informational_schema.tables instead of using the client library api - QEXPECT_FAIL("", "MySQL driver thinks that views are tables", Continue); QVERIFY(!tables.contains(qTableName("qtest_view"), Qt::CaseInsensitive)); } if (tempTables) @@ -524,10 +520,6 @@ void tst_QSqlDatabase::tables() tables = db.tables(QSql::Views); if (views) { - if (db.driverName().startsWith("QMYSQL")) - // MySQL doesn't give back anything when calling QSqlDatabase::tables() with QSql::Views - // May be fixable by doing a select on informational_schema.views instead of using the client library api - QEXPECT_FAIL("", "MySQL driver thinks that views are tables", Continue); if(!tables.contains(qTableName("qtest_view"), Qt::CaseInsensitive)) qDebug() << "failed to find" << qTableName("qtest_view") << "in" << tables; QVERIFY(tables.contains(qTableName("qtest_view"), Qt::CaseInsensitive)); |