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

Function CheckSmallIntColumn

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

Source from the content-addressed store, hash-verified

558}
559
560void CheckSmallIntColumn(SQLHSTMT stmt, int col_id, const SQLSMALLINT& expected) {
561 SQLSMALLINT buf;
562 SQLLEN buf_len = sizeof(buf);
563
564 ASSERT_EQ(SQL_SUCCESS,
565 SQLGetData(stmt, col_id, SQL_C_SSHORT, &buf, sizeof(buf), &buf_len));
566
567 EXPECT_EQ(expected, buf);
568}
569
570void ValidateFetch(SQLHSTMT stmt, SQLRETURN expected_return) {
571 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