MCPcopy Create free account
hub / github.com/apache/arrow / CheckSmallIntColumn

Function CheckSmallIntColumn

cpp/src/arrow/flight/sql/odbc/tests/odbc_test_suite.cc:641–649  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

639}
640
641void CheckSmallIntColumn(SQLHSTMT stmt, int col_id, const SQLSMALLINT& expected) {
642 SQLSMALLINT buf;
643 SQLLEN buf_len = sizeof(buf);
644
645 ASSERT_EQ(SQL_SUCCESS,
646 SQLGetData(stmt, col_id, SQL_C_SSHORT, &buf, sizeof(buf), &buf_len));
647
648 EXPECT_EQ(expected, buf);
649}
650
651void ValidateFetch(SQLHSTMT stmt, SQLRETURN expected_return) {
652 ASSERT_EQ(expected_return, SQLFetch(stmt));

Callers 2

CheckSQLColumnsFunction · 0.85
CheckSQLGetTypeInfoFunction · 0.85

Calls 1

SQLGetDataFunction · 0.50

Tested by

no test coverage detected