ksuarez1423 commented on code in PR #13859:
URL: https://github.com/apache/arrow/pull/13859#discussion_r943949593


##########
cpp/examples/tutorial_examples/arrow_example.cc:
##########
@@ -0,0 +1,90 @@
+#include <arrow/api.h>
+#include <arrow/result.h>
+#include <arrow/status.h>
+#include <arrow/table.h>
+
+#include <iostream>
+
+arrow::Status RunMain(int argc, char** argv) {
+
+  // Creating Arrays and Tables
+  arrow::Int8Builder int8builder; 
+  int8_t days_raw[5] = {1, 12, 17, 23, 28};

Review Comment:
   I tried to only use auto when it made reading a proper headache, and having 
the type wasn't very relevant -- I figured it was fairly important, for this 
part.



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