You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Empty lines have special significance for the SQLLogic test runner: they signify an end of the current statement or query. For that reason, empty strings and NULL values have special syntax that must be used in result verification. NULL values should use the string NULL, and empty strings should use the string (empty), e.g.:
query II
SELECT NULL, ''
----
NULL
(empty)
The goal of this ticket is to make the DataFusion sqlogictest framework do the same thing
The text was updated successfully, but these errors were encountered:
Currently the sqllogictest framework uses the arrow csv writer
This we would need some way to control how NULLs are printed in the CSV writer in order to change the display of null values to "NULL" -- I will attempt to upstream that.
As explained in https://duckdb.org/dev/sqllogictest/result_verification#null-values-and-empty-strings
The goal of this ticket is to make the DataFusion sqlogictest framework do the same thing
The text was updated successfully, but these errors were encountered: