This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink-table-store.git
The following commit(s) were added to refs/heads/master by this push:
new ae4c2345 [hotfix] Fix checkstyle errors in spark module
ae4c2345 is described below
commit ae4c234578495664cbc2122499ac59bd72798c68
Author: JingsongLi <[email protected]>
AuthorDate: Fri Jun 17 16:47:00 2022 +0800
[hotfix] Fix checkstyle errors in spark module
---
.../src/main/java/org/apache/flink/table/store/spark/SparkScan.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/flink-table-store-spark/src/main/java/org/apache/flink/table/store/spark/SparkScan.java
b/flink-table-store-spark/src/main/java/org/apache/flink/table/store/spark/SparkScan.java
index d8ee8d5f..f7425953 100644
---
a/flink-table-store-spark/src/main/java/org/apache/flink/table/store/spark/SparkScan.java
+++
b/flink-table-store-spark/src/main/java/org/apache/flink/table/store/spark/SparkScan.java
@@ -62,7 +62,8 @@ public class SparkScan implements Scan,
SupportsReportStatistics {
@Override
public StructType readSchema() {
- return
SparkTypeUtils.fromFlinkRowType(TypeUtils.project(table.schema().logicalRowType(),
projectedFields));
+ return SparkTypeUtils.fromFlinkRowType(
+ TypeUtils.project(table.schema().logicalRowType(),
projectedFields));
}
@Override