1
0

[HUDI-916]: Added support for multiple input formats in TimestampBasedKeyGenerator (#1648)

This commit is contained in:
Pratyaksh Sharma
2020-07-11 00:58:45 +05:30
committed by GitHub
parent c7f1a781ab
commit 9627a385fe
7 changed files with 404 additions and 51 deletions

View File

@@ -60,7 +60,6 @@ import org.apache.spark.sql.types.StructType;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.StringReader;
import java.nio.ByteBuffer;
import java.sql.Connection;
@@ -267,12 +266,6 @@ public class UtilHelpers {
return -1;
}
public static TypedProperties readConfig(InputStream in) throws IOException {
TypedProperties defaults = new TypedProperties();
defaults.load(in);
return defaults;
}
/**
* Returns a factory for creating connections to the given JDBC URL.
*