alinaliBQ commented on code in PR #48689:
URL: https://github.com/apache/arrow/pull/48689#discussion_r2658316125


##########
cpp/src/arrow/flight/sql/odbc/odbc_impl/flight_sql_result_set_metadata.cc:
##########
@@ -222,7 +222,9 @@ Updatability FlightSqlResultSetMetadata::GetUpdatable(int 
column_position) {
 bool FlightSqlResultSetMetadata::IsAutoUnique(int column_position) {
   ColumnMetadata metadata = GetMetadata(schema_->field(column_position - 1));
 
-  // TODO: Is AutoUnique equivalent to AutoIncrement?
+  // AUTO_UNIQUE_VALUE (ODBC 3.0+) is equivalent to
+  // AUTO_INCREMENT (ODBC 2.0). Both indicate columns
+  // that automatically generate unique values.

Review Comment:
   Yes the statement is correct. 



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to