cocoa-xu commented on code in PR #507:
URL: https://github.com/apache/arrow-nanoarrow/pull/507#discussion_r1626809396


##########
src/nanoarrow/nanoarrow_types.h:
##########
@@ -953,6 +956,16 @@ static inline void ArrowDecimalSetBytes(struct 
ArrowDecimal* decimal,
   memcpy(decimal->words, value, decimal->n_words * sizeof(uint64_t));
 }
 
+/// \brief A representation of a run of the run end encoded array
+/// \ingroup nanoarrow-utils
+///
+struct ArrowRunEndEncoded {
+  /// \brief The length of this run
+  int64_t length;
+
+  /// \brief The value of this run
+};
+

Review Comment:
   Oh sorry! I forgot to remove these lines -- originally thought that we might 
need something to represent a run but it turned out there's no need for that :)



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