@@ -264,8 +264,7 @@ SQLRETURN SQLGetDiagField(SQLSMALLINT handle_type, SQLHANDLE handle,
264264 SQLSMALLINT rec_number, SQLSMALLINT diag_identifier,
265265 SQLPOINTER diag_info_ptr, SQLSMALLINT buffer_length,
266266 SQLSMALLINT* string_length_ptr) {
267- // TODO: Implement additional fields types
268- // https://github.com/apache/arrow/issues/46573
267+ // GH-46573 TODO: Implement additional fields types
269268 ARROW_LOG (DEBUG) << " SQLGetDiagFieldW called with handle_type: " << handle_type
270269 << " , handle: " << handle << " , rec_number: " << rec_number
271270 << " , diag_identifier: " << diag_identifier
@@ -345,7 +344,7 @@ SQLRETURN SQLGetDiagField(SQLSMALLINT handle_type, SQLHANDLE handle,
345344 return SQL_SUCCESS;
346345 }
347346
348- // TODO implement return code function
347+ // Driver manager implements SQL_DIAG_RETURNCODE
349348 case SQL_DIAG_RETURNCODE: {
350349 return SQL_SUCCESS;
351350 }
@@ -789,11 +788,10 @@ SQLRETURN SQLDriverConnect(SQLHDBC conn, SQLHWND window_handle,
789788 << static_cast <const void *>(out_connection_string_len)
790789 << " , driver_completion: " << driver_completion;
791790
792- // TODO: Implement FILEDSN and SAVEFILE keywords according to the spec
793- // https://github.com/apache/arrow/issues/46449
791+ // GH-46449 TODO: Implement FILEDSN and SAVEFILE keywords according to the spec
794792
795- // TODO: Copy connection string properly in SQLDriverConnect according to the
796- // spec https://github.com/apache/arrow/issues/46560
793+ // GH-46560 TODO: Copy connection string properly in SQLDriverConnect according to the
794+ // spec
797795
798796 using ODBC::ODBCConnection;
799797
@@ -810,8 +808,8 @@ SQLRETURN SQLDriverConnect(SQLHDBC conn, SQLHWND window_handle,
810808
811809 std::vector<std::string_view> missing_properties;
812810
813- // TODO: Implement SQL_DRIVER_COMPLETE_REQUIRED in SQLDriverConnect according to the
814- // spec https://github.com/apache/arrow/issues/46448
811+ // GH-46448 TODO: Implement SQL_DRIVER_COMPLETE_REQUIRED in SQLDriverConnect according
812+ // to the spec
815813#if defined _WIN32 || defined _WIN64
816814 // Load the DSN window according to driver_completion
817815 if (driver_completion == SQL_DRIVER_PROMPT) {
0 commit comments