Skip to content

Commit 7f2bfea

Browse files
committed
Update doxygen
1 parent 542a76b commit 7f2bfea

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

cpp/src/arrow/flight/sql/odbc/odbc_impl/odbc_statement.h

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -80,15 +80,11 @@ class ODBCStatement : public ODBCHandle<ODBCStatement> {
8080
bool GetData(SQLSMALLINT record_number, SQLSMALLINT c_type, SQLPOINTER data_ptr,
8181
SQLLEN buffer_length, SQLLEN* indicator_ptr);
8282

83-
/**
84-
* @brief Closes the cursor. This does _not_ un-prepare the statement or change
85-
* bindings.
86-
*/
83+
/// \brief Closes the cursor. This does _not_ un-prepare the statement or change
84+
/// bindings.
8785
void CloseCursor(bool suppress_errors);
8886

89-
/**
90-
* @brief Releases this statement from memory.
91-
*/
87+
/// \brief Releases this statement from memory.
9288
void ReleaseStatement();
9389

9490
void GetTables(const std::string* catalog, const std::string* schema,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ TYPED_TEST(StatementTest, TestSQLCloseCursor) {
4848
}
4949

5050
TYPED_TEST(StatementTest, TestSQLFreeStmtSQLCloseWithoutCursor) {
51-
// SQLFreeStmt(SQL_CLOSE) does not throw error with invalid cursor
51+
// Verify SQLFreeStmt(SQL_CLOSE) does not throw error with invalid cursor
5252

5353
ASSERT_EQ(SQL_SUCCESS, SQLFreeStmt(this->stmt, SQL_CLOSE));
5454
}

0 commit comments

Comments
 (0)