Skip to content

Commit 4d22a4c

Browse files
committed
fix
1 parent fb8d803 commit 4d22a4c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

fluss-flink/fluss-flink-2.2/src/test/java/org/apache/fluss/flink/adapter/Flink22MultipleParameterToolTest renamed to fluss-flink/fluss-flink-2.2/src/test/java/org/apache/fluss/flink/adapter/Flink22MultipleParameterToolTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
package org.apache.fluss.flink.adapter;
1919

2020
/** Test for {@link MultipleParameterToolAdapter} in flink 2.2. */
21-
public class Flink22MultipleParameterToolTest extends FlinkMultipleParameterToolTest {}
21+
public class Flink22MultipleParameterToolTest extends FlinkMultipleParameterToolTest {}

fluss-flink/fluss-flink-common/src/test/java/org/apache/fluss/flink/catalog/FlinkCatalogTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ private CatalogTable newCatalogTable(
139139
return new ResolvedCatalogTable(origin, resolvedSchema);
140140
}
141141

142-
protected CatalogMaterializedTable newCatalogMaterializedTable(
142+
private CatalogMaterializedTable newCatalogMaterializedTable(
143143
ResolvedSchema resolvedSchema,
144144
CatalogMaterializedTable.RefreshMode refreshMode,
145145
Map<String, String> options) {

fluss-flink/fluss-flink-common/src/test/java/org/apache/fluss/flink/source/FlinkTableSourceBatchITCase.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ void testCountPushDown(boolean partitionTable) throws Exception {
311311
"Currently, Fluss only support queries on table with datalake enabled or point queries on primary key when it's in batch execution mode.");
312312
}
313313

314-
protected String prepareSourceTable(String[] keys, String partitionedKey) throws Exception {
314+
private String prepareSourceTable(String[] keys, String partitionedKey) throws Exception {
315315
String tableName =
316316
String.format("test_%s_%s", String.join("_", keys), RandomUtils.nextInt());
317317
if (partitionedKey == null) {
@@ -367,7 +367,7 @@ protected String prepareSourceTable(String[] keys, String partitionedKey) throws
367367
return tableName;
368368
}
369369

370-
protected String prepareLogTable() throws Exception {
370+
private String prepareLogTable() throws Exception {
371371
String tableName = String.format("test_log_table_%s", RandomUtils.nextInt());
372372
tEnv.executeSql(
373373
String.format(

0 commit comments

Comments
 (0)