Description
The OrcSerializer's struct converter uses an index to look up a field converter in a linked list, resulting in a n*(n/2) average complexity per row (where n is the field count).
Simply converting the linked list to an array brings performance gains, especially for wide structs.