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 @@ -29,7 +29,7 @@
* BatchPhysicalLateralSnapshotJoinRule} degrades the join to a regular join of the probe side
* against the (final) build side.
*/
public class LateralSnapshotJoinBatchSemanticTests extends BatchSemanticTestBase {
public class LateralSnapshotJoinBatchSemanticTest extends BatchSemanticTestBase {

@Override
public List<TableTestProgram> programs() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import static org.apache.flink.table.planner.plan.nodes.exec.stream.MLPredictTestPrograms.SYNC_ML_PREDICT_TABLE_API;

/** Semantic tests for {@link BatchExecMLPredictTableFunction} using Table API. */
public class MLPredictBatchSemanticTests extends BatchSemanticTestBase {
public class MLPredictBatchSemanticTest extends BatchSemanticTestBase {

@Override
public List<TableTestProgram> programs() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import java.util.List;

/** Semantic tests for {@link StreamExecChangelogNormalize}. */
public class ChangelogNormalizeSemanticTests extends SemanticTestBase {
public class ChangelogNormalizeSemanticTest extends SemanticTestBase {

@Override
public List<TableTestProgram> programs() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import java.util.List;

/** Semantic tests for {@link ConstraintEnforcer}. */
public class ConstraintEnforcerSemanticTests extends SemanticTestBase {
public class ConstraintEnforcerSemanticTest extends SemanticTestBase {

@Override
public List<TableTestProgram> programs() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import java.util.List;

/** Semantic tests for various {@link StreamExecNode}s and sources producing deletes by key only. */
public class DeletesByKeySemanticTests extends SemanticTestBase {
public class DeletesByKeySemanticTest extends SemanticTestBase {

@Override
public List<TableTestProgram> programs() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import java.util.List;

/** Semantic tests for the built-in FROM_CHANGELOG process table function. */
public class FromChangelogSemanticTests extends SemanticTestBase {
public class FromChangelogSemanticTest extends SemanticTestBase {

@Override
protected void applyDefaultEnvironmentOptions(TableConfig config) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import java.util.List;

/** Semantic tests for {@link StreamExecJoin}. */
public class JoinSemanticTests extends SemanticTestBase {
public class JoinSemanticTest extends SemanticTestBase {
@Override
public List<TableTestProgram> programs() {
return List.of(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import java.util.List;

/** Semantic tests for {@link StreamExecLateralSnapshotJoin}. */
public class LateralSnapshotJoinSemanticTests extends SemanticTestBase {
public class LateralSnapshotJoinSemanticTest extends SemanticTestBase {
@Override
public List<TableTestProgram> programs() {
return List.of(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import java.util.List;

/** Semantic tests for various {@link StreamExecNode}s. */
public class MiscSemanticTests extends SemanticTestBase {
public class MiscSemanticTest extends SemanticTestBase {

@Override
public List<TableTestProgram> programs() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import java.util.List;

/** Semantic tests for {@link StreamExecMultiJoin}. */
public class MultiJoinSemanticTests extends SemanticTestBase {
public class MultiJoinSemanticTest extends SemanticTestBase {

@Override
protected void applyDefaultEnvironmentOptions(TableConfig config) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
import java.util.List;

/** Restore tests for {@link StreamExecProcessTableFunction}. */
public class ProcessTableFunctionRestoreTests extends RestoreTestBase {
public class ProcessTableFunctionRestoreTest extends RestoreTestBase {

protected ProcessTableFunctionRestoreTests() {
protected ProcessTableFunctionRestoreTest() {
super(StreamExecProcessTableFunction.class);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import java.util.List;

/** Semantic tests for {@link StreamExecProcessTableFunction}. */
public class ProcessTableFunctionSemanticTests extends SemanticTestBase {
public class ProcessTableFunctionSemanticTest extends SemanticTestBase {

@Override
public List<TableTestProgram> programs() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import java.util.Map;

/** Semantic tests for {@link StreamExecSink}. */
public class SinkSemanticTests extends SemanticTestBase {
public class SinkSemanticTest extends SemanticTestBase {

@Override
public EnumSet<TestKind> supportedSetupSteps() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import java.util.List;

/** Semantic tests for the built-in TO_CHANGELOG process table function. */
public class ToChangelogSemanticTests extends SemanticTestBase {
public class ToChangelogSemanticTest extends SemanticTestBase {

@Override
protected void applyDefaultEnvironmentOptions(TableConfig config) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
/**
* Result tests for the {@code LATERAL SNAPSHOT} processing-time temporal join that are
* non-deterministic or benefit from dual-backend (HEAP/ROCKSDB) coverage. Deterministic,
* backend-agnostic cases live in {@code LateralSnapshotJoinSemanticTests}; time-driven behavior
* backend-agnostic cases live in {@code LateralSnapshotJoinSemanticTest}; time-driven behavior
* (idle-timeout flip, state-TTL eviction) in {@code LateralSnapshotJoinOperatorTest}.
*
* <p>To stabilize results, each build source appends a non-matching "flip-trigger" row at {@link
Expand Down