Zhen Chen created CALCITE-7383:
----------------------------------
Summary: CoreQuidemTest2 needs to support all removed files.
Key: CALCITE-7383
URL: https://issues.apache.org/jira/browse/CALCITE-7383
Project: Calcite
Issue Type: Task
Components: core
Reporter: Zhen Chen
CoreQuidemTest2 is a test file added for the new disassociation algorithm.
Because the new algorithm does not yet fit all test cases well, some .iq files
have been temporarily removed. We need to continuously fix these issues so that
all files can be tested correctly.
{code:java}
@Override protected Collection<String> data() {
final List<String> paths = new ArrayList<>(super.data());
// These remove operations are temporary and will be deleted
// once the new decorrelator can adapt to all scenarios.
// TODO: The following files involves UNNEST and LEFT_MARK JOIN
paths.remove("sql/measure.iq");
paths.remove("sql/unnest.iq");
paths.remove("sql/some.iq");
paths.remove("sql/sub-query.iq");
paths.remove("sql/scalar.iq");
paths.remove("sql/measure-paper.iq");
paths.remove("sql/misc.iq");
return paths;
} {code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)