Skip to content

Commit

Permalink
[CALCITE-5839] EnumerableInterpretable#StaticFieldDetector can overwr…
Browse files Browse the repository at this point in the history
…ite its flag and return an incorrect result
  • Loading branch information
rubenada committed Jul 12, 2023
1 parent b2cdab2 commit 55f714c
Show file tree
Hide file tree
Showing 2 changed files with 116 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ static class StaticFieldDetector extends VisitorImpl<Void> {
boolean containsStaticField = false;

@Override public Void visit(final FieldDeclaration fieldDeclaration) {
containsStaticField = (fieldDeclaration.modifier & Modifier.STATIC) != 0;
containsStaticField |= (fieldDeclaration.modifier & Modifier.STATIC) != 0;
return containsStaticField ? null : super.visit(fieldDeclaration);
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to you under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.calcite.adapter.enumerable;

import org.apache.calcite.linq4j.tree.ClassDeclaration;
import org.apache.calcite.linq4j.tree.Expressions;
import org.apache.calcite.linq4j.tree.FieldDeclaration;

import com.google.common.collect.ImmutableList;

import org.junit.jupiter.api.Test;

import java.lang.reflect.Modifier;
import java.util.Arrays;

import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.MatcherAssert.assertThat;

/**
* Tests for {@link EnumerableInterpretable.StaticFieldDetector}.
*/
public final class StaticFieldDetectorTest {

@Test void testClassWithoutStaticFields() {
ClassDeclaration classDeclaration =
createClassDeclaration(
new FieldDeclaration(
Modifier.PUBLIC,
Expressions.parameter(int.class, "x"),
Expressions.constant(0)));

EnumerableInterpretable.StaticFieldDetector detector =
new EnumerableInterpretable.StaticFieldDetector();
classDeclaration.accept(detector);
assertThat(detector.containsStaticField, is(false));
}

@Test void testClassWithOnlyStaticFields() {
ClassDeclaration classDeclaration =
createClassDeclaration(
new FieldDeclaration(
Modifier.PUBLIC | Modifier.STATIC,
Expressions.parameter(int.class, "x"),
Expressions.constant(0)),
new FieldDeclaration(
Modifier.STATIC,
Expressions.parameter(int.class, "y"),
Expressions.constant(0)));

EnumerableInterpretable.StaticFieldDetector detector =
new EnumerableInterpretable.StaticFieldDetector();
classDeclaration.accept(detector);
assertThat(detector.containsStaticField, is(true));
}

@Test void testClassWithStaticAndNonStaticFields() {
ClassDeclaration classDeclaration =
createClassDeclaration(
new FieldDeclaration(
Modifier.PUBLIC | Modifier.STATIC,
Expressions.parameter(int.class, "x"),
Expressions.constant(0)),
new FieldDeclaration(
Modifier.PUBLIC,
Expressions.parameter(int.class, "y"),
Expressions.constant(0)));

EnumerableInterpretable.StaticFieldDetector detector =
new EnumerableInterpretable.StaticFieldDetector();
classDeclaration.accept(detector);
assertThat(detector.containsStaticField, is(true));
}

@Test void testClassWithNonStaticAndStaticFields() {
ClassDeclaration classDeclaration =
createClassDeclaration(
new FieldDeclaration(
Modifier.PUBLIC,
Expressions.parameter(int.class, "x"),
Expressions.constant(0)),
new FieldDeclaration(
Modifier.PUBLIC | Modifier.STATIC,
Expressions.parameter(int.class, "y"),
Expressions.constant(0)));

EnumerableInterpretable.StaticFieldDetector detector =
new EnumerableInterpretable.StaticFieldDetector();
classDeclaration.accept(detector);
assertThat(detector.containsStaticField, is(true));
}

private static ClassDeclaration createClassDeclaration(FieldDeclaration... fieldDeclarations) {
return new ClassDeclaration(
Modifier.PUBLIC,
"MyClass",
null,
ImmutableList.of(),
Arrays.asList(fieldDeclarations));
}

}

0 comments on commit 55f714c

Please sign in to comment.