Commits


David Li authored and Antoine Pitrou committed e93c560281a
ARROW-12088: [Python] Fix compiler warning about offsetof Cython generates code using offsetof, support for which is nonstandard on non-POD types. The Cython RecordBatchIterator class directly embedded Iterator, which is non-POD, leading to the warning. Wrap it in a shared_ptr instead to avoid this. Closes #9812 from lidavidm/arrow-12088 Authored-by: David Li <li.davidm96@gmail.com> Signed-off-by: Antoine Pitrou <antoine@python.org>