1
0

[HUDI-1109] Support Spark Structured Streaming read from Hudi table (#2485)

This commit is contained in:
pengzhiwei
2021-02-17 19:36:29 +08:00
committed by GitHub
parent 5d2491d10c
commit 37972071ff
10 changed files with 517 additions and 15 deletions

View File

@@ -23,6 +23,8 @@ import org.apache.spark.sql.catalyst.InternalRow;
import java.io.Serializable;
public interface SparkRowDeserializer extends Serializable {
public interface SparkRowSerDe extends Serializable {
Row deserializeRow(InternalRow internalRow);
InternalRow serializeRow(Row row);
}