[jira] [Commented] (CALCITE-2865) FilterProjectTransposeRule generates wrong traitSet when copyFilter/Project is true

2019-03-29 Thread Ruben Quesada Lopez (JIRA)


[ 
https://issues.apache.org/jira/browse/CALCITE-2865?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16804676#comment-16804676
 ] 

Ruben Quesada Lopez commented on CALCITE-2865:
--

[~hyuan], I asked myself the same question, I don't know why these copyFilter / 
copyProject flags were implemented in the first place.

> FilterProjectTransposeRule generates wrong traitSet when copyFilter/Project 
> is true
> ---
>
> Key: CALCITE-2865
> URL: https://issues.apache.org/jira/browse/CALCITE-2865
> Project: Calcite
>  Issue Type: Bug
>Affects Versions: 1.18.0
>Reporter: Ruben Quesada Lopez
>Assignee: Ruben Quesada Lopez
>Priority: Major
>  Labels: pull-request-available
>  Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> Problem can be reproduced with the following steps:
> As suggested by [~zabetak], a possibility to reproduce this issue is with the 
> following test in RelOptRulesTest:
> {code:java}
>   /** Test case for
>*  href="https://issues.apache.org/jira/browse/CALCITE-2865;>[CALCITE-2865]
>* FilterProjectTransposeRule generates wrong traitSet when 
> copyFilter/Project is true. */
>   @Test public void testFilterProjectTransposeRule() {
> List rules = Arrays.asList(
> FilterProjectTransposeRule.INSTANCE, // default values: 
> copyFilter=true, copyProject=true
> new FilterProjectTransposeRule(Filter.class, Project.class, 
> /*copyFilter*/ false, /*copyProject*/ false, RelFactories.LOGICAL_BUILDER));
> List results = new ArrayList<>(2);
> for (RelOptRule rule : rules) {
>   RelBuilder b = RelBuilder.create(RelBuilderTest.config().build());
>   RelNode in = b
>   .scan("EMP")
>   .sort(-4) // salary desc
>   .project(b.field(3)) // salary
>   .filter(b.equals(b.field(0), b.literal(11500))) // salary = 
> 11500
>   .build();
>   HepProgram program = new HepProgramBuilder()
>   .addRuleInstance(rule)
>   .build();
>   HepPlanner hepPlanner = new HepPlanner(program);
>   hepPlanner.setRoot(in);
>   results.add(hepPlanner.findBestExp());
> }
> // compare LogicalFilter traitSet
> assertEquals(results.get(0).getInput(0).getTraitSet(), 
> results.get(1).getInput(0).getTraitSet());
>   }
> {code}
> Which fails with the following message:
> {code:java}
> java.lang.AssertionError: 
> Expected :NONE.[0 DESC]
> Actual   :NONE.[3 DESC]
> {code}
> If we run the test with a break point at the end of 
> {{FilterProjectTransposeRule#onMatch}} method, we can see that, when the 
> project and filter are transposed, the generated output (newFilterRel) is 
> different in terms of traitSet, depending if the copyFilter / copyProject 
> flags are used or not:
>  - copyFilter and copyProject TRUE (default)
> {code:java}
> LogicalProject.NONE.[0 DESC] 
> LogicalFilter.NONE.[0 DESC] // !!! 
> LogicalSort.NONE.[3 DESC] 
> {code}
>  - copyFilter and copyProject FALSE
> {code:java}
> LogicalProject.NONE.[0 DESC] 
> LogicalFilter.NONE.[3 DESC] // !!! 
> LogicalSort.NONE.[3 DESC] 
> {code}
> As I see it, the default behavior (copyFilter/Project true) seems wrong in 
> terms of new filter's traitSet.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (CALCITE-2865) FilterProjectTransposeRule generates wrong traitSet when copyFilter/Project is true

2019-03-28 Thread Haisheng Yuan (JIRA)


[ 
https://issues.apache.org/jira/browse/CALCITE-2865?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16804041#comment-16804041
 ] 

Haisheng Yuan commented on CALCITE-2865:


I am curious why does it provide copyFilter and copyProject option.

> FilterProjectTransposeRule generates wrong traitSet when copyFilter/Project 
> is true
> ---
>
> Key: CALCITE-2865
> URL: https://issues.apache.org/jira/browse/CALCITE-2865
> Project: Calcite
>  Issue Type: Bug
>Affects Versions: 1.18.0
>Reporter: Ruben Quesada Lopez
>Assignee: Ruben Quesada Lopez
>Priority: Major
>  Labels: pull-request-available
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Problem can be reproduced with the following steps:
> As suggested by [~zabetak], a possibility to reproduce this issue is with the 
> following test in RelOptRulesTest:
> {code:java}
>   /** Test case for
>*  href="https://issues.apache.org/jira/browse/CALCITE-2865;>[CALCITE-2865]
>* FilterProjectTransposeRule generates wrong traitSet when 
> copyFilter/Project is true. */
>   @Test public void testFilterProjectTransposeRule() {
> List rules = Arrays.asList(
> FilterProjectTransposeRule.INSTANCE, // default values: 
> copyFilter=true, copyProject=true
> new FilterProjectTransposeRule(Filter.class, Project.class, 
> /*copyFilter*/ false, /*copyProject*/ false, RelFactories.LOGICAL_BUILDER));
> List results = new ArrayList<>(2);
> for (RelOptRule rule : rules) {
>   RelBuilder b = RelBuilder.create(RelBuilderTest.config().build());
>   RelNode in = b
>   .scan("EMP")
>   .sort(-4) // salary desc
>   .project(b.field(3)) // salary
>   .filter(b.equals(b.field(0), b.literal(11500))) // salary = 
> 11500
>   .build();
>   HepProgram program = new HepProgramBuilder()
>   .addRuleInstance(rule)
>   .build();
>   HepPlanner hepPlanner = new HepPlanner(program);
>   hepPlanner.setRoot(in);
>   results.add(hepPlanner.findBestExp());
> }
> // compare LogicalFilter traitSet
> assertEquals(results.get(0).getInput(0).getTraitSet(), 
> results.get(1).getInput(0).getTraitSet());
>   }
> {code}
> Which fails with the following message:
> {code:java}
> java.lang.AssertionError: 
> Expected :NONE.[0 DESC]
> Actual   :NONE.[3 DESC]
> {code}
> If we run the test with a break point at the end of 
> {{FilterProjectTransposeRule#onMatch}} method, we can see that, when the 
> project and filter are transposed, the generated output (newFilterRel) is 
> different in terms of traitSet, depending if the copyFilter / copyProject 
> flags are used or not:
>  - copyFilter and copyProject TRUE (default)
> {code:java}
> LogicalProject.NONE.[0 DESC] 
> LogicalFilter.NONE.[0 DESC] // !!! 
> LogicalSort.NONE.[3 DESC] 
> {code}
>  - copyFilter and copyProject FALSE
> {code:java}
> LogicalProject.NONE.[0 DESC] 
> LogicalFilter.NONE.[3 DESC] // !!! 
> LogicalSort.NONE.[3 DESC] 
> {code}
> As I see it, the default behavior (copyFilter/Project true) seems wrong in 
> terms of new filter's traitSet.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (CALCITE-2865) FilterProjectTransposeRule generates wrong traitSet when copyFilter/Project is true

2019-02-25 Thread Ruben Quesada Lopez (JIRA)


[ 
https://issues.apache.org/jira/browse/CALCITE-2865?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16776735#comment-16776735
 ] 

Ruben Quesada Lopez commented on CALCITE-2865:
--

[~zabetak] sure, I'll work on that test case

> FilterProjectTransposeRule generates wrong traitSet when copyFilter/Project 
> is true
> ---
>
> Key: CALCITE-2865
> URL: https://issues.apache.org/jira/browse/CALCITE-2865
> Project: Calcite
>  Issue Type: Bug
>Affects Versions: 1.18.0
>Reporter: Ruben Quesada Lopez
>Priority: Major
>
> Problem can be reproduced with the following test:
> {code}
> @Test public void testFilterProjectTransposeRule() {
>   CalciteAssert.that()
> .withSchema("s", new ReflectiveSchema(new JdbcTest.HrSchema()))
> .query("?")
> .withRel(b -> b
> .scan("s", "emps")
> .filter(b.equals(b.field(1), b.literal(10))) // deptno = 10
> .sort(-4) // salary desc
> .project(b.field(3)) // salary (**)
> .filter(b.equals(b.field(0), b.literal(11500))) // salary = 
> 11500 (**)
> .build())
> .returnsOrdered("salary=11500.0");
> }
> {code}
> If we run the test with a break point at the end of 
> {{FilterProjectTransposeRule#onMatch}} method, we can see that, when the 
> project and filter tagged with (**) are transposed, the generated output 
> (newFilterRel) is different in terms of traitSet, depending if the copyFilter 
> / copyProject flags are used or not:
> - copyFilter and copyProject TRUE (default)
> {code}
> LogicalProject.NONE.[0 DESC]
> LogicalFilter.NONE.[0 DESC]  // !!!
> LogicalSort.NONE.[1 DESC]
> {code}
> - copyFilter and copyProject FALSE
> {code}
> LogicalProject.NONE.[0 DESC]
> LogicalFilter.NONE.[1 DESC]  // !!!
> LogicalSort.NONE.[1 DESC]
> {code}
> As I see it, the default behavior seems wrong in terms of new filter's 
> traitSet, although the test run successfully (maybe because other rules 
> intervene to build the final plan?).



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (CALCITE-2865) FilterProjectTransposeRule generates wrong traitSet when copyFilter/Project is true

2019-02-25 Thread Stamatis Zampetakis (JIRA)


[ 
https://issues.apache.org/jira/browse/CALCITE-2865?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16776730#comment-16776730
 ] 

Stamatis Zampetakis commented on CALCITE-2865:
--

Wouldn't be better to demonstrate the problem using HepPlanner and only 
FilterProjectTransposeRule with a test in RelOptRulesTest? The test should 
explicitly assert the traitSet. 

> FilterProjectTransposeRule generates wrong traitSet when copyFilter/Project 
> is true
> ---
>
> Key: CALCITE-2865
> URL: https://issues.apache.org/jira/browse/CALCITE-2865
> Project: Calcite
>  Issue Type: Bug
>Affects Versions: 1.18.0
>Reporter: Ruben Quesada Lopez
>Priority: Major
>
> Problem can be reproduced with the following test:
> {code}
> @Test public void testFilterProjectTransposeRule() {
>   CalciteAssert.that()
> .withSchema("s", new ReflectiveSchema(new JdbcTest.HrSchema()))
> .query("?")
> .withRel(b -> b
> .scan("s", "emps")
> .filter(b.equals(b.field(1), b.literal(10))) // deptno = 10
> .sort(-4) // salary desc
> .project(b.field(3)) // salary (**)
> .filter(b.equals(b.field(0), b.literal(11500))) // salary = 
> 11500 (**)
> .build())
> .returnsOrdered("salary=11500.0");
> }
> {code}
> If we run the test with a break point at the end of 
> {{FilterProjectTransposeRule#onMatch}} method, we can see that, when the 
> project and filter tagged with (**) are transposed, the generated output 
> (newFilterRel) is different in terms of traitSet, depending if the copyFilter 
> / copyProject flags are used or not:
> - copyFilter and copyProject TRUE (default)
> {code}
> LogicalProject.NONE.[0 DESC]
> LogicalFilter.NONE.[0 DESC]  // !!!
> LogicalSort.NONE.[1 DESC]
> {code}
> - copyFilter and copyProject FALSE
> {code}
> LogicalProject.NONE.[0 DESC]
> LogicalFilter.NONE.[1 DESC]  // !!!
> LogicalSort.NONE.[1 DESC]
> {code}
> As I see it, the default behavior seems wrong in terms of new filter's 
> traitSet, although the test run successfully (maybe because other rules 
> intervene to build the final plan?).



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)