prakashbalaji opened a new issue, #47315:
URL: https://github.com/apache/arrow/issues/47315

   ### Describe the usage question you have. Please include as many useful 
details as  possible.
   
   
   From a C++ client library there is a method too loop through the chunk of 
data and print them to console. This method is implemented in a client library 
and the results are truncated with columns. Is there a possibility to get the 
entire column results without truncation?
   
   
   ```
   while (true) {
       ARROW_ASSIGN_OR_RAISE(flight::FlightStreamChunk chunk, stream->Next());
       if (chunk.data == nullptr) {
         break;
       }
       std::cout << chunk.data->ToString() << std::endl;
       num_rows += chunk.data->num_rows();
     }
   
     std::cout << "Total: " << num_rows << std::endl;
   ```
   ```
   l_comment:   [
       "ously across the regular",
       "theodolites. blithely final foxes haggle. q",
       "ular accounts! furiously express acc",
       "haggle slyly ",
       " final Tiresias cajole slyly. furiously",
       " requests wake blithely regul",
       ". pending reque",
       "quests. ironic accounts are outside t",
       "counts boost ",
       "attainment",
       ...
       "d the furiously unusual",
       "ccounts. carefully pending i",
       "equests sleep a",
       "st blithely pending, special requests. car",
       "uests are carefully ideas. ironic ",
       " slyly bold foxes cajole slyly regular, spe",
       "yly regular ideas affix fur",
       "ing packages b",
       "dolites sleep slyly final n",
       " slyly above the carefully pending packag"
     ]
   Total: 1000
   ```
   
   ### Component(s)
   
   C++


-- 
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: issues-unsubscr...@arrow.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to