comphead commented on PR #10394: URL: https://github.com/apache/datafusion/pull/10394#issuecomment-2096405869
I checked current behavior ``` > CREATE TABLE test (x int) ; 0 row(s) fetched. Elapsed 0.017 seconds. > INSERT INTO test VALUES (1); +-------+ | count | +-------+ | 1 | +-------+ 1 row(s) fetched. Elapsed 0.015 seconds. > INSERT INTO test VALUES (3); +-------+ | count | +-------+ | 1 | +-------+ 1 row(s) fetched. Elapsed 0.005 seconds. ``` I'm not even sure why we output anything after DDL/DML... I'd probably prefer no output like in duckdb ``` D create table x (id int); D insert into x values(1); ``` -- 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]
