From bc270860032b8b4567b5072c53e702ac2b45d269 Mon Sep 17 00:00:00 2001 From: Alex Fabijanic Date: Tue, 11 Jul 2017 10:04:12 +0200 Subject: [PATCH] fix 32bit SQLite tests --- Data/SQLite/testsuite/src/SQLiteTest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Data/SQLite/testsuite/src/SQLiteTest.cpp b/Data/SQLite/testsuite/src/SQLiteTest.cpp index ec0b1e9ef..cbb963281 100644 --- a/Data/SQLite/testsuite/src/SQLiteTest.cpp +++ b/Data/SQLite/testsuite/src/SQLiteTest.cpp @@ -2020,7 +2020,7 @@ void SQLiteTest::testInternalExtraction() { Session tmp (Poco::Data::SQLite::Connector::KEY, "dummy.db"); tmp << "DROP TABLE IF EXISTS Vectors", now; - tmp << "CREATE TABLE Vectors (int0 INTEGER, flt0 REAL, str0 VARCHAR)", now; + tmp << "CREATE TABLE Vectors (int0 INTEGER32, flt0 REAL, str0 VARCHAR)", now; std::vector > v; v.push_back(Tuple(1, 1.5, "3")); @@ -2086,7 +2086,7 @@ void SQLiteTest::testAny() { Session tmp (Poco::Data::SQLite::Connector::KEY, "dummy.db"); tmp << "DROP TABLE IF EXISTS Anys", now; - tmp << "CREATE TABLE Anys (int0 INTEGER, flt0 REAL, str0 VARCHAR)", now; + tmp << "CREATE TABLE Anys (int0 INTEGER32, flt0 REAL, str0 VARCHAR)", now; Any i = Int32(42); Any f = double(42.5);