NobiGo commented on code in PR #4024: URL: https://github.com/apache/calcite/pull/4024#discussion_r1826866273
########## server/src/test/resources/sql/materialized_view.iq: ########## @@ -39,12 +39,12 @@ select * from dept where deptno > 10; # Check contents select * from v; -+--------+-------------+ -| DEPTNO | NAME | -+--------+-------------+ -| 20 | Marketing | -| 30 | Engineering | Review Comment: The changes here are a bit strange. Maybe we can change the table definition statement. ``` # Create a source table create table dept (deptno int not null, name varchar(10)); (0 rows modified) !update insert into dept values (10, 'Sales'), (20, 'Marketing'), (30, 'Engineering'); (3 rows modified) ``` According to the output content, was cropping done during output or input? -- 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]
