Development Footguns¶
An assorted list of footguns we’ve run into during development. This list is intended to help you (and your agents) during development and code review.
Go: it’s easy to have the schema and data for record readers not match. Tests should validate that the schema of the reader matches the expectation and that the schema of the reader and the record batch matches. (Example: bigquery#303 )
This is a common footgun in general in Arrow implementations.