I was able to query FIX messages as a csv using delimiter as '\u0001', but the results had tag=value in each of the columns, like so:
Expected:
---------
8 |
---------
FIX.4.4|
FIX.4.4|
FIX.4.4|
FIX.4.4|
FIX.4.4|
---------
Actual:
-----------
EXPR$1 |
-----------
8=FIX.4.4|
8=FIX.4.4|
8=FIX.4.4|
8=FIX.4.4|
8=FIX.4.4|
-----------
How do I query FIX protocol message files using Apache Drill to achieve the above expected result? Will this need a custom storage format implementation?