Copilot commented on code in PR #144:
URL: https://github.com/apache/fluss-rust/pull/144#discussion_r2679448299


##########
crates/fluss/src/row/mod.rs:
##########
@@ -65,11 +65,14 @@ pub trait InternalRow {
     // /// Returns the decimal value at the given position
     // fn get_decimal(&self, pos: usize, precision: usize, scale: usize) -> 
Decimal;
 
-    // /// Returns the timestamp value at the given position
-    // fn get_timestamp_ntz(&self, pos: usize, precision: usize) -> 
TimestampNtz;
+    /// Returns the timestamp value at the given position (date as days since 
epoch)

Review Comment:
   The comment incorrectly states "Returns the timestamp value at the given 
position" when this method actually returns a date value (days since epoch). 
The comment should read "Returns the date value at the given position (date as 
days since epoch)".
   ```suggestion
       /// Returns the date value at the given position (date as days since 
epoch)
   ```



-- 
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