Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ private BeamJavaUdfCalcRule() {

@Override
public boolean matches(RelOptRuleCall x) {
return ZetaSQLQueryPlanner.hasOnlyJavaUdfInProjects(x);
// TODO(BEAM-11747) Re-enable this rule when we can guarantee its correctness.
return false;
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
import org.codehaus.commons.compiler.CompileException;
import org.joda.time.Duration;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
Expand All @@ -49,6 +50,7 @@
* beam.sql.udf.test.empty_jar_path</code> must be set.
*/
@RunWith(JUnit4.class)
@Ignore("TODO(BEAM-11747) Re-enable when BeamJavaUdfCalcRule can be re-enabled.")
public class ZetaSqlJavaUdfTest extends ZetaSqlTestBase {
@Rule public transient TestPipeline pipeline = TestPipeline.create();
@Rule public ExpectedException thrown = ExpectedException.none();
Expand Down