Omega359 commented on code in PR #24803: URL: https://github.com/apache/datafusion/pull/24803#discussion_r3889886971
########## benchmarks/sql_benchmarks/tpch/init/load_csv.sql: ########## @@ -1,99 +1,100 @@ CREATE EXTERNAL TABLE nation ( - n_nationkey INT, - n_name CHAR(25), - n_regionkey INT, - n_comment VARCHAR(152), + n_nationkey BIGINT NOT NULL, + n_name CHAR(25) NOT NULL, + n_regionkey BIGINT NOT NULL, + n_comment VARCHAR(152) NOT NULL, Review Comment: These changes are primarily int -> bigint + not null matching rust native version. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
