Skip to content

Commit 01529da

Browse files
committed
Use nullptr explicitly
1 parent 7ddfb17 commit 01529da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/src/arrow/flight/sql/odbc/tests/statement_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1238,7 +1238,7 @@ TEST_F(StatementRemoteTest, DISABLED_TestSQLExtendedFetchQueryNullIndicator) {
12381238
// server instead. Mock server has type `DENSE_UNION` for null column data.
12391239
SQLINTEGER val;
12401240

1241-
ASSERT_EQ(SQL_SUCCESS, SQLBindCol(this->stmt, 1, SQL_C_LONG, &val, 0, 0));
1241+
ASSERT_EQ(SQL_SUCCESS, SQLBindCol(this->stmt, 1, SQL_C_LONG, &val, 0, nullptr));
12421242

12431243
std::wstring wsql = L"SELECT null as null_col;";
12441244
std::vector<SQLWCHAR> sql0(wsql.begin(), wsql.end());

0 commit comments

Comments
 (0)