You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2021/06/25 23:25:06 UTC

[GitHub] [arrow] emkornfield commented on pull request #10603: ARROW-13191: [Go] allow external schema in ipc readers

emkornfield commented on pull request #10603:
URL: https://github.com/apache/arrow/pull/10603#issuecomment-868881296


   @zeroshade do you have thoughts here?  Being able to pass in an external schema is useful in some contexts.
   
   Would it be workable to have the following logic:
   ```
   if (passedInSchema) {
     message = readMessage()
     if (message.isSchema) {
       validate(message.schema, passedInSchema)
       message = readMessage()
     }
   }
   ```
   
   Make sense?


-- 
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: github-unsubscribe@arrow.apache.org

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