We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b539daa + af7fd46 commit 6300e53Copy full SHA for 6300e53
test/unit/bugs/bugs.cpp
@@ -823,8 +823,8 @@ void bugs::bug14520822()
823
ASSERT_EQUALS("1", res->getString(2));
824
ASSERT_EQUALS(false, res->getBoolean(1));
825
ASSERT_EQUALS(true, res->getBoolean(2));
826
- ASSERT_EQUALS(0L, res->getInt64(1));
827
- ASSERT_EQUALS(1L, res->getInt64(2));
+ ASSERT_EQUALS((int64_t)0, res->getInt64(1));
+ ASSERT_EQUALS((int64_t)1, res->getInt64(2));
828
829
pstmt.reset(con->prepareStatement("select min(b) ,max(b) from bug14520822"));
830
res.reset(pstmt->executeQuery());
@@ -833,8 +833,8 @@ void bugs::bug14520822()
833
834
835
836
837
838
839
}
840
catch (sql::SQLException &e)
0 commit comments