https://duckdb.org/dev/sqllogictest/result_verification
The standard way of verifying results of queries is using the query statement, followed by the letter I times the number of columns that are expected in the result.
query II
SELECT 42, 84 UNION ALL SELECT 10, 20;
----
42 84
10 20
At the moment, the datafusion sqllogictest framework entirely ignores the number of I after the query command
The goal of this ticket is to update the framework (and tests) to error if the number of Is doesn't match the number of columns