zzwqqq commented on code in PR #5041: URL: https://github.com/apache/calcite/pull/5041#discussion_r3459699536
########## server/src/test/resources/sql/materialized_view.iq: ########## @@ -19,7 +19,7 @@ !set outputformat mysql # Create a source table -create table dept (deptno int not null, name varchar(10)); +create table dept (deptno int not null, name varchar(20)); Review Comment: Thanks for taking a look. The old output depended on the implicit assignment cast to `varchar(10)`, which truncated `Engineering` to `Engineerin`. That truncation is not what this test is intended to cover, so I widened the column to keep the test focused on MV behavior. -- 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]
