Skip to content
Snippets Groups Projects
Commit 59be105c authored by Steven Murray's avatar Steven Murray
Browse files

Fixed bug in unit-test insert_with_bindUint64

parent 1e1995bf
No related branches found
No related tags found
No related merge requests found
......@@ -178,7 +178,7 @@ TEST_P(cta_rdbms_StmtTest, insert_with_bindUint64) {
" 1," "\n"
" :UINT64_COL)";
auto stmt = m_conn.createStmt(sql);
stmt.bindDouble(":UINT64_COL", insertValue);
stmt.bindUint64(":UINT64_COL", insertValue);
stmt.executeNonQuery();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment