Solaris test compile/run

This commit is contained in:
Aleksandar Fabijanic
2008-09-22 18:13:54 +00:00
parent 95b2f13647
commit 6ca0056f79
2 changed files with 6 additions and 7 deletions

View File

@@ -267,9 +267,9 @@ void SQLExecutor::bareboneMySQLTest(const char* host, const char* user, const ch
rc = mysql_stmt_fetch(hstmt);
assert (rc == 0);
assert (0 == strncmp("111", chr[0], 3));
assert (0 == strncmp("222", chr[1], 3));
assert (0 == strncmp("333", chr[2], 3));
assert (0 == std::strncmp("111", chr[0], 3));
assert (0 == std::strncmp("222", chr[1], 3));
assert (0 == std::strncmp("333", chr[2], 3));
assert (4 == fourth);
assert (1.5 == fifth);